Skip to content

Commit f149d2e

Browse files
authored
update tombstone
1 parent 7a00967 commit f149d2e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Chapter20/showArgs.c

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
// showArgs.c
22
// Chapter 20
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Demonstrate how to
66
// * retrieve arguments entered on the command line
77
//
8-
// compile with: cc showArgs.c -o showArgs -Wall -Werror -std=c11
8+
// compile with:
9+
//
10+
// cc showArgs.c -o showArgs -Wall -Werror -std=c11
911
//
1012

1113
#include <stdio.h>
@@ -30,3 +32,5 @@ int main(int argc, char *argv[])
3032
}
3133
printf( "\n" );
3234
}
35+
36+
// eof

0 commit comments

Comments
 (0)