A program to check the number is Positive, Negative or Zero using C program.

//A program to check the number is Positive, Negative or Zero using C program.

#include<stdio.h>
#include<conio.h>                   
void main()
{
int num;
char choice;
do
{
printf("Enter an integer number :");
scanf("%d",&num);
if(num==0)      
printf("Number is ZERO.");
else if(num>0)   
printf("Number is POSITIVE.");
else          
printf("Number is NEGATIVE.");
printf("\n\nWant to check again (press Y/y for 'yes') :");
scanf(" %c",&choice); /*Here is a space before %c*/
}while(choice=='Y' || choice=='y');
printf(“Bye Bye !!!”);
getch();             
}
Output:


A program to check the number is Positive, Negative or Zero using C program., a c program to check the numbe is positive, negative or zero., my knowledge to you dude



Post a Comment

0 Comments