Skip to content

Commit 77e1e9e

Browse files
authored
update tombstone
1 parent 1199027 commit 77e1e9e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Chapter13/pointers4.c

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// pointers4.c
22
// Chapter 13
3-
// <book title>
3+
// Learn C Programming
44
//
55
// This program builds on program pointers2.c
66
// and demonstrates double indirection in a function
@@ -11,7 +11,9 @@
1111
// (double indirection) so the address of pDimension
1212
// can be properly accessed in the function.
1313
//
14-
// compile with: cc pointers4.c -o pointers4 -Wall -Werror -std=c11
14+
// Compile with:
15+
//
16+
// cc pointers4.c -o pointers4 -Wall -Werror -std=c11
1517
//
1618

1719
#include <stdio.h>
@@ -62,3 +64,4 @@ int main( void )
6264
showVariable( pIdentifier , pDimension );
6365
}
6466

67+
// eof

0 commit comments

Comments
 (0)