-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.out
More file actions
103 lines (103 loc) · 3.1 KB
/
test.out
File metadata and controls
103 lines (103 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
%.4x: `0012'
%04x: `0012'
%4.4x: `0012'
%04.4x: `0012'
%4.3x: ` 012'
%04.3x: ` 012'
%.*x: `0012'
%0*x: `0012'
%*.*x: `0012'
%0*.*x: `0012'
bad format: "%b"
nil pointer (padded): " (nil)"
decimal negative: "-2345"
octal negative: "37777773327"
hex negative: "fffff6d7"
long decimal number: "-123456"
long octal negative: "37777773327"
long unsigned decimal number: "4294843840"
zero-padded LDN: "-000123456"
left-adjusted ZLDN: "-123456 "
space-padded LDN: " -123456"
left-adjusted SLDN: "-123456 "
zero-padded string: " Hi, Z."
left-adjusted Z string: "Hi, Z. "
space-padded string: " Hi, Z."
left-adjusted S string: "Hi, Z. "
null string: "(null)"
limited string: "Good morning, Doctor C"
e-style >= 1: "1.234000e+01"
e-style >= .1: "1.234000e-01"
e-style < .1: "1.234000e-03"
e-style big: "1.000000000000000000000000000000000000000000000000000000000000e+20"
e-style == .1: "1.000000e-01"
f-style >= 1: "12.340000"
f-style >= .1: "0.123400"
f-style < .1: "0.001234"
g-style >= 1: "12.34"
g-style >= .1: "0.1234"
g-style < .1: "0.001234"
g-style big: "100000000000000000000"
0.10000
0.10000
x0.5000x
0x1
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
5.87747175411143754e-39
4.94066e-324
| 0.0000| 0.0000e+00| 0|
| 1.0000| 1.0000e+00| 1|
| -1.0000| -1.0000e+00| -1|
| 100.0000| 1.0000e+02| 100|
| 1000.0000| 1.0000e+03| 1000|
| 10000.0000| 1.0000e+04| 1e+04|
| 12345.0000| 1.2345e+04| 1.234e+04|
| 100000.0000| 1.0000e+05| 1e+05|
| 123456.0000| 1.2346e+05| 1.235e+05|
Formatted output test
prefix 6d 6o 6x 6X 6u
%-+#0 |-123 |0377 |0xff |0XFF |4294967295 |
%-+# |-123 |0377 |0xff |0XFF |4294967295 |
%-+0 |-123 |377 |ff |FF |4294967295 |
%-+ |-123 |377 |ff |FF |4294967295 |
%-#0 |-123 |0377 |0xff |0XFF |4294967295 |
%-# |-123 |0377 |0xff |0XFF |4294967295 |
%-0 |-123 |377 |ff |FF |4294967295 |
%- |-123 |377 |ff |FF |4294967295 |
%+#0 |-00123 |000377 |0x00ff |0X00FF |4294967295 |
%+# | -123 | 0377 | 0xff | 0XFF |4294967295 |
%+0 |-00123 |000377 |0000ff |0000FF |4294967295 |
%+ | -123 | 377 | ff | FF |4294967295 |
%#0 |-00123 |000377 |0x00ff |0X00FF |4294967295 |
%# | -123 | 0377 | 0xff | 0XFF |4294967295 |
%0 |-00123 |000377 |0000ff |0000FF |4294967295 |
% | -123 | 377 | ff | FF |4294967295 |
(null)
(null)
1.234568e+06 should be 1.234568e+06
1234567.800000 should be 1234567.800000
1.23457e+06 should be 1.23457e+06
123.456 should be 123.456
1e+06 should be 1e+06
10 should be 10
0.02 should be 0.02
printf ("%hhu", 257) = 1
printf ("%hu", 65537) = 1
printf ("%hhi", 257) = 1
printf ("%hi", 65537) = 1
--- Should be no further output. ---