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
/
exa2.c
blob
c7b358d33a825125552f5818734af3ac49809933
1
/*while loop with decrementing counter*/
2
3
#include<stdio.h>
4
5
int
main
()
6
{
7
int
i
=
5
;
8
while
(
i
>=
1
)
9
{
10
printf
(
"I:%d
\n
"
,
i
);
11
i
--;
12
}
13
return
0
;
14
}