Skip to content

Commit 42acaaf

Browse files
authored
update tombstone
1 parent b7b6cfd commit 42acaaf

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Chapter19/signedInt.c

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
// signedInt.c
22
// Chapter 19
3-
// <book title>
3+
// Learn C Programming
44
//
55
// Demonstrate how to
66
// 1) print signed values using minimum field, precision, and alignment
77
// 2) print 64-bit values (long long int)
88
// 3) explore powers of 2 and powers of 9
99
//
10-
// compile with: cc signedInt.c -o signedInt -Wall -Werror -std=c11
10+
// compile with:
11+
//
12+
// cc signedInt.c -o signedInt -Wall -Werror -std=c11
1113
//
1214

1315
#include <stdio.h>
@@ -56,4 +58,6 @@ int main( void )
5658
printf( " [%6d] [%-6d] [%-.6d] [%6.3d] [%-6.3d] [%d]\n" ,
5759
k , k , k , k , k , k );
5860
}
59-
}
61+
}
62+
63+
// eof

0 commit comments

Comments
 (0)