Tech Study

C program to check number is positive, negative or zero

Introduction

C program to check number is positive, negative or zero. 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

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

TaggedC program to check number is positivenegative or zero

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more