Back To C Flow of Control Index
//program to demonstrate if statement example 3,program to find whether number is less than 10 or not #include
#include
void main() { int a; clrscr(); printf("enter value for a"); scanf("%d",&a); if(a<10) { printf("value of a is less than 10"); } getch(); }