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
configure: cleanup
[tinycc.git]
/
tests
/
tests2
/
09_do_while.c
blob
1d3315d3ab6cb3bd8124245b11395d720b67c5b1
1
#include <stdio.h>
2
3
int
main
()
4
{
5
int
a
;
6
int
p
;
7
int
t
;
8
9
a
=
1
;
10
p
=
0
;
11
t
=
0
;
12
13
do
14
{
15
printf
(
"%d
\n
"
,
a
);
16
t
=
a
;
17
a
=
t
+
p
;
18
p
=
t
;
19
}
while
(
a
<
100
);
20
21
return
0
;
22
}
23
24
// vim: set expandtab ts=4 sw=3 sts=3 tw=80 :