Code for Program to compare number is greater than 100 or not using if statement in C Programming
#include<stdio.h>
#include<conio.h>
void main()
{
int number;
clrscr();
printf("Enter an integer number:");
scanf("%d",&number);
if(number < 100)
{
printf("Your number is smaller than 100\n\n");
}
else
{
printf("Your number contains more than two digits :");
}
getch();
}