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
/
exa3.c
blob
c3882c4b2804b859a6408e11a2be5e13af9f46dc
1
#include<stdio.h>
2
3
int
main
()
4
{
5
int
i
=
0
;
6
while
(
i
++<
10
)
7
printf
(
"%d
\n
"
,
i
);
8
9
return
0
;
10
}