repo.or.cz
/
tinycc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix float to long long conversion on ARM
[tinycc.git]
/
tests
/
tests2
/
26_character_constants.c
blob
95c4423718891216e21395c316d55fc8ff6b885e
1
#include <stdio.h>
2
3
int
main
()
4
{
5
printf
(
"%d
\n
"
,
'\1'
);
6
printf
(
"%d
\n
"
,
'\10'
);
7
printf
(
"%d
\n
"
,
'
\100
'
);
8
printf
(
"%d
\n
"
,
'
\x01
'
);
9
printf
(
"%d
\n
"
,
'
\x0e
'
);
10
printf
(
"%d
\n
"
,
'
\x10
'
);
11
printf
(
"%d
\n
"
,
'
\x40
'
);
12
printf
(
"test
\x40\n
"
);
13
14
return
0
;
15
}
16
17
/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/