We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1199027 commit 77e1e9eCopy full SHA for 77e1e9e
Chapter13/pointers4.c
@@ -1,6 +1,6 @@
1
// pointers4.c
2
// Chapter 13
3
-// <book title>
+// Learn C Programming
4
//
5
// This program builds on program pointers2.c
6
// and demonstrates double indirection in a function
@@ -11,7 +11,9 @@
11
// (double indirection) so the address of pDimension
12
// can be properly accessed in the function.
13
14
-// compile with: cc pointers4.c -o pointers4 -Wall -Werror -std=c11
+// Compile with:
15
+//
16
+// cc pointers4.c -o pointers4 -Wall -Werror -std=c11
17
18
19
#include <stdio.h>
@@ -62,3 +64,4 @@ int main( void )
62
64
showVariable( pIdentifier , pDimension );
63
65
}
66
67
+ // eof
0 commit comments