Home » , » Basic C Programming Practice - Practice 3

Basic C Programming Practice - Practice 3

Written By Unknown on Thursday, October 10, 2013 | 11:30 PM

=> Write a program to check the given number is  positive,negative or zero.



Solutoion :


#include<stdio.h>
#include<conio.h>
main()
{
      int numb;
      printf("Please Enter Your Number : ");
      scanf("%d",&numb);
      if(numb>0)
      printf("The Number Is Positive.");
      else
      if(numb<0)
      printf("\nThe Number Is Negative");
      else
      printf("\nThe Number Is Zero.");
      getch();
  }


OR :

                                                         #include<stdio.h>
                                                          int main()
                                                         {
                                                                   int number;
                                                                   scanf("%d", &number);
                                                                   if ( number >0)
                                                                   printf("postive");
                                                                   else
                                                                  {
                                                                   if (number<0) 
                                                                   printf("negative"); 
                                                                   else 
                                                                   printf("zero"); 
                                                                  } 
                                                          } 


Program Analysis : 
We use here if and else if decision control statement and made an if else if chain.As we know numbers grater-than zero are positive numbers and less than zero are negative. 

Share this article :

Post a Comment

 
Support : Creating Website | Johny Template | Mas Template
Copyright © 2011. Learn Programming - All Rights Reserved
Template Created by Creating Website Published by Mas Template
Proudly powered by Blogger| Distributed by Rocking Templates