Explorar el Código

Fixed readme description for myecho

Lily Carpenter hace 12 años
padre
commit
f384d669fe
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      README.md

+ 2 - 1
README.md

@@ -7,4 +7,5 @@ Just a couple small c programs
7 7
 My Echo
8 8
 =========
9 9
 
10
-This program simply takes numbers
10
+This program simply takes a binary stream of numbers from STDIN and outputs them.
11
+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.