Skip to content

Commit 5195fcf

Browse files
authored
update tombstone
1 parent 80faaaf commit 5195fcf

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Chapter17/heading.c

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
// heading.c
22
// Chapter 18
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Demonstrate how to use a static variable in
66
// a function to print the next page number each time the
77
// function is called.
88
//
9-
// compile with: cc heading.c -o heading -Wall -Werror -std=c11
9+
// compile with:
1010
//
11+
// cc heading.c -o heading -Wall -Werror -std=c11
12+
//
13+
1114
#include <stdio.h>
1215

1316
void printHeading( const char* aHeading );
@@ -27,3 +30,5 @@ void printHeading( const char* aHeading ) {
2730
printf( "%s \t Page %d\n" , aHeading , pageNo);
2831
pageNo++;
2932
}
33+
34+
// eof

0 commit comments

Comments
 (0)