#include <stdio.h>
int main()
{ int x;
printf("Enter the number you want to check: ");
scanf("%d",&x);
printf("%d \n",x);
if (x==0)
{printf("The number is Zero");}
else if (x>=0)
{printf("The number is Positive");}
else
{printf("The numebr is Negative");}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: