Check Number is Positive or Negative in C

Advertisements

Prev Tutorial Next Tutorial

C Program to Check Number is Positive or Negative

In this porgram we check given number is +ve or -ve number if number is greater than 0 it will possitive if number is less than 0 i will negative number. To write this code we need only if....else conditional statement.

Check Given number is Negative or Positive in C

#include<stdio.h>
#include<conio.h>

void main()
{
 int num;
 clrscr ();
 printf("Enter any number: ");
 scanf("%d", &num);
 if (num > 0)
 {
  printf("%d is a Positive number \n", num);
 } 
  else if (num < 0)
  { 
   printf("%d is a Negative number \n", num);
  } 
  else
  { 
   printf("0 is Neither Positive nor Negative");
  }
  getch();
}

Output 1

Enter any Number: 10
10 is a Positive number

Output 2

Enter any Number: -20
-20 is a Negative number

Output 3

Enter any Number: 0
0 is Neither Positive nor Negative

Prev Tutorial Next Tutorial

Google Advertisment

Buy This Ad Space @$20 per Month, Ad Size 600X200 Contact on: hitesh.xc@gmail.com or 9999595223

Magenet is best Adsense Alternative here we earn $2 for single link, Here we get links ads. Magenet

For Projects 9999595223

Google Advertisements


Buy Websites 9999595223

Buy College Projects with Documentation Contact on whatsapp 9999595223. Contact on: hitesh.xc@gmail.com or 9999595223 Try this Keyword C++ Programs

Advertisements