

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C program to Check Whether a Number is Positive or Negative or Zero?
A number which is greater than 0 is positive and less than 0 are negative. The concept of positive and negative is very important in number theory and programming also. Calculations rely on this concept only.
Input: 0 Output:0 is zero
Explanation
Using conditional statement check the number with 0 weather it is greater than 0 or smaller than 0.
Example
#include <iostream> using namespace std; int main() { int n=0; if(n>0) { printf("%d is positive",n); } else if(n<0) { printf("%d is negative",n); } else { printf("%d is zero",n); } return 0; }
- Related Questions & Answers
- Java Program to Check Whether a Number is Positive or Negative
- How to check if a number is positive, negative or zero using Python?
- Check if a number is positive, negative or zero using bit operators in C++
- Check whether product of integers from a to b is positive, negative or zero in Python
- Python Program to Check if a Number is Positive, Negative or 0
- C# Program to check if a number is Positive, Negative, Odd, Even, Zero
- Program to check if a number is Positive, Negative, Odd, Even, Zero?
- C++ Program to Check Whether a Number is Prime or Not
- C++ Program to Check Whether a Number is Palindrome or Not
- C Program to Check Whether a Number is Prime or not?
- C++ Program to Check Whether Number is Even or Odd
- Java program to find if the given number is positive or negative
- Program to check whether a number is Proth number or not in C++
- Java Program to Check Whether a Number is Even or Odd
- Java Program to Check Whether a Number is Prime or Not
Advertisements