Skip to content

Commit 4ca6abd

Browse files
authored
update tombstone
1 parent 8c99840 commit 4ca6abd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Chapter13/pointers1.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
// pointers1.c
22
// Chapter 13
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Demonstrate how to
66
// 1) declare a pointer to int
77
// 2) get info about the pointer (its address, size)
88
// 3) assign targets to the pointer
99
// 4) print out info about the targets.
1010
//
11-
// compile with: cc pointers1.c -o pointers1 -Wall -Werror -std=c11
11+
// Compile with:
12+
//
13+
// cc pointers1.c -o pointers1 -Wall -Werror -std=c11
1214
//
1315

1416
#include <stdio.h>

0 commit comments

Comments
 (0)