We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7b6cfd commit 42acaafCopy full SHA for 42acaaf
Chapter19/signedInt.c
@@ -1,13 +1,15 @@
1
// signedInt.c
2
// Chapter 19
3
-// <book title>
+// Learn C Programming
4
//
5
// Demonstrate how to
6
// 1) print signed values using minimum field, precision, and alignment
7
// 2) print 64-bit values (long long int)
8
// 3) explore powers of 2 and powers of 9
9
10
-// compile with: cc signedInt.c -o signedInt -Wall -Werror -std=c11
+// compile with:
11
+//
12
+// cc signedInt.c -o signedInt -Wall -Werror -std=c11
13
14
15
#include <stdio.h>
@@ -56,4 +58,6 @@ int main( void )
56
58
printf( " [%6d] [%-6d] [%-.6d] [%6.3d] [%-6.3d] [%d]\n" ,
57
59
k , k , k , k , k , k );
60
}
-}
61
+}
62
+
63
+ // eof
0 commit comments