We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c99840 commit 4ca6abdCopy full SHA for 4ca6abd
Chapter13/pointers1.c
@@ -1,14 +1,16 @@
1
// pointers1.c
2
// Chapter 13
3
-// <book title>
+// Learn C Programming
4
//
5
// Demonstrate how to
6
// 1) declare a pointer to int
7
// 2) get info about the pointer (its address, size)
8
// 3) assign targets to the pointer
9
// 4) print out info about the targets.
10
11
-// compile with: cc pointers1.c -o pointers1 -Wall -Werror -std=c11
+// Compile with:
12
+//
13
+// cc pointers1.c -o pointers1 -Wall -Werror -std=c11
14
15
16
#include <stdio.h>
0 commit comments