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
elf: Support STB_LOCAL dynamic symbols
[tinycc.git]
/
tests
/
tests2
/
48_nested_break.c
blob
5bc5ba47ff688885c94a9b9ef67e9d51a97eba06
1
#include <stdio.h>
2
3
int
main
()
4
{
5
int
a
;
6
char
b
;
7
8
a
=
0
;
9
while
(
a
<
2
)
10
{
11
printf
(
"%d"
,
a
++);
12
break
;
13
14
b
=
'A'
;
15
while
(
b
<
'C'
)
16
{
17
printf
(
"%c"
,
b
++);
18
}
19
printf
(
"e"
);
20
}
21
printf
(
"
\n
"
);
22
23
return
0
;
24
}
25
26
/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/