Skip to content

Commit fedf196

Browse files
authored
update tombstone
1 parent 4ca6abd commit fedf196

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Chapter13/pointers2.c

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// pointers2.c
22
// Chapter 13
3-
// <book title>
3+
// Learn C Programming
44
//
5-
// This program builds on program pointers1.c
5+
// This program builds upon program pointers1.c
66
//
77
// Demonstrates how to use pointers in functions (parameters
88
// and in function body). Also shows what "side effects" are.
@@ -17,7 +17,9 @@
1717
// (this changes them outside of the function)
1818
// 4) call the new functions with pointer variables.
1919
//
20-
// compile with: cc pointers2.c -o pointers2 -Wall -Werror -std=c11
20+
// Compile with:
21+
//
22+
// cc pointers2.c -o pointers2 -Wall -Werror -std=c11
2123
//
2224

2325
#include <stdio.h>
@@ -68,3 +70,5 @@ int main( void )
6870
showVariable( pIdentifier , pDimension );
6971
}
7072

73+
// eof
74+

0 commit comments

Comments
 (0)