#include <stdio.h>
int main() 
{
    int num1;
    if(num1>=100)
    printf("this number is below 100\n");
    else
            printf("this number is not below 100\n");
    printf("the given number\n");
    scanf("%d",&num1);
    if(num1%2==0)
        printf("%d is even",num1);
else
        printf("%d is odd",num1); 
return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: