#include <stdio.h>
int main() 
{ 
int num;
printf("ENTER THE NUMBER:\n");
scanf("%d",&num);
if(num>0)
{ 
printf("THE GIVEN NUMBER IS POSITIVE NUMBER");
}
else if(num==0)
{ 
printf("THE GIVEN NUMBER IS ZERO");
}
else
{
    printf("THE GIVEN NUMBER IS NEGATIVE NUMBER");
}
    return 0;
}

Embed on website

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