Skip to content

Commit 5f4162b

Browse files
authored
update tombstone
1 parent 42acaaf commit 5f4162b

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Chapter19/unsignedInt.c

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
// unsignedInt.c
22
// Chapter 19
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Demonstrate how to
66
// 1) print unsigned values in octal, decimal, and hexadecimal
77
// 2) see what happens when you print negative numbers as unsigned values
88
// 3) explore powers of 2 and powers of 9
99
// 4) print out pointer values.
1010
//
11-
// compile with: cc unsignedInt.c -o unsignedInt -Wall -Werror -std=c11
11+
// compile with:
12+
//
13+
// cc unsignedInt.c -o unsignedInt -Wall -Werror -std=c11
1214
//
1315

1416
#include <stdio.h>
@@ -70,3 +72,7 @@ int main( void )
7072
printf( " %%p [%p] pointer\n" , &smallInt );
7173
printf( " %%#lx [%#lx] using hex\n\n" , (unsigned long)&smallInt );
7274
}
75+
76+
// eof
77+
78+

0 commit comments

Comments
 (0)