move to repo.or.cz
[letusc.git] / ch2 / examples / rough.c
blob9ce570c5f32031c18cf96086a1d082e9b3eb75e7
1 #include<stdio.h>
3 int main()
5 int i;
6 printf("Enter value of i less than 10: ");
7 scanf("%d",&i);
8 (i<10?printf("What an obedient student u are !\n"):printf("useless student\n"));
9 return 0;