Преглед на файлове

Fixed readme description for myecho

Lily Carpenter преди 12 години
родител
ревизия
f384d669fe
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  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.