Skip to content

Commit 845c4a6

Browse files
authored
update tombstone
1 parent 8df9a24 commit 845c4a6

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Chapter21/readScanSet.c

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
// readScanSet.c
22
// Chapter 21
3-
// Learn C Programming - Fundamentals of C
3+
// Learn C Programming
44
//
55
// Demonstrate how to use a scan set to limit
66
// character inputs.
77
//
8-
// compile with: cc readScanSet.c -o readScanSet -Wall -Werror -std=c11
8+
// compile with:
9+
//
10+
// cc readScanSet.c -o readScanSet -Wall -Werror -std=c11
911
//
1012

1113
#include <stdio.h>
1214

13-
1415
// Test inputs:
1516
//
1617
// aayyeeuuiioo<return>
@@ -20,10 +21,8 @@
2021
// a e i o u y<return>
2122
//
2223

23-
2424
const int bufferSize = 80;
2525

26-
2726
int main( void )
2827
{
2928
char stringBuffer[ bufferSize ];
@@ -33,4 +32,4 @@ int main( void )
3332
}
3433

3534
// eof
36-
35+

0 commit comments

Comments
 (0)