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
Turn on a implicit-function-declaration warning by default.
[tinycc.git]
/
tests
/
tests2
/
04_for.c
blob
312fed855e8663d2fe2c5435ebf171b38100df65
1
#include <stdio.h>
2
3
int
main
()
4
{
5
int
Count
;
6
7
for
(
Count
=
1
;
Count
<=
10
;
Count
++)
8
{
9
printf
(
"%d
\n
"
,
Count
);
10
}
11
12
return
0
;
13
}
14
15
// vim: set expandtab ts=4 sw=3 sts=3 tw=80 :