Showing posts with label odd. Show all posts
Showing posts with label odd. Show all posts

Monday, 31 March 2014

C Program | Find odd or even using conditional operator

 C Program-Find odd or even using conditional operator


Source Code :-)


#include<stdio.h>

main()
{
   int n;

   printf("Input an integer\n");
   scanf("%d",&n);

   n%2 == 0 ? printf("Even\n") : printf("Odd\n");

   return 0;
}

C program to check odd or even number-Source code

C program to check odd or even number-Source code

Source Code:-)


#include<stdio.h>

main()
{
   int n;

   printf("Enter an integer\n");
   scanf("%d",&n);

   if ( n%2 == 0 )
      printf("Even\n");
   else
      printf("Odd\n");

   return 0;
}