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 initializing members multiple times
[tinycc.git]
/
tests
/
tests2
/
35_sizeof.c
blob
672e87e7f18f582d21ee2d0ecca9819b94894ed1
1
#include <stdio.h>
2
3
int
main
()
4
{
5
char
a
;
6
short
b
;
7
8
printf
(
"%d %d
\n
"
,
sizeof
(
char
),
sizeof
(
a
));
9
printf
(
"%d %d
\n
"
,
sizeof
(
short
),
sizeof
(
b
));
10
11
return
0
;
12
}
13
14
/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/