소스 검색

Updated readme

Lily Carpenter 12 년 전
부모
커밋
8089526bc7
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      README.md

+ 5 - 0
README.md

@@ -9,3 +9,8 @@ My Echo
9 9
 
10 10
 This program simply takes a binary stream of numbers from STDIN and outputs them.
11 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.
12
+
13
+My Sort
14
+========
15
+
16
+Like My Echo, this program takes a binary stream of numbers from STDIN. However, this one uses the quicksort algorithm to sort them, and then outputs them to STDOUT.