/*Check entered value is less than 100 or not using simple if*/
#include<stdio.h>
int main()
{
int num;
printf("Enter num=");
scanf("%d",&num);
if(num<100)
printf("\nIts less than 100");
if(num>100)
printf("\nIts not less than 100");
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: