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]
/
ch2
/
examples
/
example1.c
blob
0c240c75611a19bac319b62acdd43f65c9572682
1
#include<stdio.h>
2
3
int
main
()
4
{
5
int
i
;
6
printf
(
"Enter a number less than 10: "
);
7
scanf
(
"%d"
,&
i
);
8
9
if
(
i
<
10
)
10
printf
(
"What an obedient servant you are !!
\n
"
);
11
12
return
0
;
13
}
14
15