Just a couple small c programs.

Lily Carpenter b83cb9674a Got a (pretty ugly looking) version of quicksort working. Checked for memory leaks, all good. Want to clean this up and probably make it an "in place" algorithm as well. před 12 roky
README.md f384d669fe Fixed readme description for myecho před 8 roky
myecho b83cb9674a Got a (pretty ugly looking) version of quicksort working. Checked for memory leaks, all good. Want to clean this up and probably make it an "in place" algorithm as well. před 8 roky
myecho.c f1bff06cc2 Got myecho working, probably will want to do some error handling/cleanup though. před 8 roky
mysort b83cb9674a Got a (pretty ugly looking) version of quicksort working. Checked for memory leaks, all good. Want to clean this up and probably make it an "in place" algorithm as well. před 8 roky
mysort.c b83cb9674a Got a (pretty ugly looking) version of quicksort working. Checked for memory leaks, all good. Want to clean this up and probably make it an "in place" algorithm as well. před 8 roky

README.md

C project

Just a couple small c programs

My Echo

This program simply takes a binary stream of numbers from STDIN and outputs them. In order to do this, it simply uses fread to grab an array of numbers from the stream until the stream ends. During this, it uses a for loop to print every number from said array.