repo.or.cz
/
letusc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move to repo.or.cz
[letusc.git]
/
ch3
/
examples
/
exa8.c
blob
9a8ab7a3c997e8ea59861ccf720b008e2d4b983c
1
#include<stdio.h>
2
3
int
main
()
4
{
5
int
i
;
6
for
(
i
=
1
;
i
<=
10
;)
7
{
8
printf
(
"%d
\n
"
,
i
);
9
i
++;
10
}
11
return
0
;
12
}