Browse Source

Fixed readme description for myecho

Lily Carpenter 12 years ago
parent
commit
f384d669fe
1 changed files with 2 additions and 1 deletions
  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.