/* Write a c program to check whether a given integer number is positive or negative.*/ #include int main() { int n; printf("\nEnter the value of n:"); scanf("%d",&n); if(n>0) printf("\n The number is positive"); else printf("\n The number is negative"); return 0; }