repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
regression
/
tcc
/
16_nesting.c
blob
2b72cc02818dfacc6544cfcee2dcefda7b51a9ce
1
#include <stdio.h>
2
3
int
main
()
4
{
5
int
x
,
y
,
z
;
6
7
for
(
x
=
0
;
x
<
2
;
x
++)
8
{
9
for
(
y
=
0
;
y
<
3
;
y
++)
10
{
11
for
(
z
=
0
;
z
<
3
;
z
++)
12
{
13
printf
(
"%d %d %d
\n
"
,
x
,
y
,
z
);
14
}
15
}
16
}
17
18
return
0
;
19
}
20
21
/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/