ソースを参照

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.