We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ca6abd commit fedf196Copy full SHA for fedf196
Chapter13/pointers2.c
@@ -1,8 +1,8 @@
1
// pointers2.c
2
// Chapter 13
3
-// <book title>
+// Learn C Programming
4
//
5
-// This program builds on program pointers1.c
+// This program builds upon program pointers1.c
6
7
// Demonstrates how to use pointers in functions (parameters
8
// and in function body). Also shows what "side effects" are.
@@ -17,7 +17,9 @@
17
// (this changes them outside of the function)
18
// 4) call the new functions with pointer variables.
19
20
-// compile with: cc pointers2.c -o pointers2 -Wall -Werror -std=c11
+// Compile with:
21
+//
22
+// cc pointers2.c -o pointers2 -Wall -Werror -std=c11
23
24
25
#include <stdio.h>
@@ -68,3 +70,5 @@ int main( void )
68
70
showVariable( pIdentifier , pDimension );
69
71
}
72
73
+ // eof
74
+
0 commit comments