Q:

C program to check number is positive, negative or zero

0

C program to check number is positive, negative or zero.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used DEV-C++ compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include <stdio.h>
int main()
{
     int num;
     
    printf("Enter any number: ");
    scanf("%d", &num);
     
 
    if(num > 0)
    {
        printf("Enter number is positive");
    }
    else if(num < 0)
    {
        printf("Enter number is nagative");
    }
    else
    {
        printf("Enter number is zero");
    } 
    
    return 0;    
}

Result:

Enter any number: -15

Enter number is nagative

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C program to check uppercase or lowercase alphabet... >>
<< C program to check alphabets using conditional ope...