Skip to content

Commit a6cf0ce

Browse files
authored
update tombstone
1 parent 5526b23 commit a6cf0ce

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Chapter21/readString2.c

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
// readString2.c
22
// Chapter 21
3-
// Learn C Programming - Fundamentals of C
3+
// Learn C Programming
44
//
55
// Demonstrate how to read and write a string with
66
// gets() and puts().
77
// Compare this program to readString.c
88
//
9-
// compile with: cc readString2.c -o readString2 -Wall -Werror -std=c11
9+
// compile with:
10+
//
11+
// cc readString2.c -o readString2 -Wall -Werror -std=c11
1012
//
1113

1214

@@ -22,4 +24,6 @@ int main( void )
2224
gets( stringBuffer );
2325
puts( "You entered: " );
2426
puts( stringBuffer );
25-
}
27+
}
28+
29+
// eof

0 commit comments

Comments
 (0)