C Program To Read Three Numbers And Print The Biggest Of Given Three Numbers.
# include <stdio.h>
# include <conio.h>
main( )
{
int a, b, c, big = 0;
clrscr( );
printf("Enter Value For A:");
scanf("%d",& a);
printf("Enter Value For B:");
scanf("%d",& b);
print("Enter Value For C:");
scanf("%d",& c);
if (a > big)
big = a ;
if(b > big)
big = b;
if (c > big)
big = c;
printf (“Biggest Of Above Given Three Number Is %d”, big)
getch( );
}
C Program To Find Whether The Given Number Is Even Or Odd Using Modulus Operator.
# include <stdio.h>
# include <conio.h>
main()
{
int n, r;
clrscr();
printf("Enter a No. ;");
scanf("%d", & n);
r = n % 2;
if(r == 0)
printf("The above given number is an even number.");
else
printf("The above given number is an odd number.");
getch();
}
C Program To Check Whether The Given No. Is Even Or Odd Using Bitwise Operator
# include <stdio.h>
# include <conio.h>
int main()
{
int n;
printf("Enter an integer\n");
scanf("%d", &n);
if (n & 1 == 1)
printf("Odd\n");
else
printf("Even\n");
return 0;
}
C Program To Check Whether The Given No. Is Even Or Odd Using Conditional Operator
# include <stdio.h>
# include <conio.h>
int 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 Whether The Given No. Is Even Or Odd Without Using Bitwise Or Modulus Operator
# include <stdio.h>
# include <conio.h>
int main()
{
int n;
printf("Enter an integer\n");
scanf("%d", &n);
if ((n/2)*2 == n)
printf("Even\n");
else
printf("Odd\n");
return 0;
}
C Program To Accept Year & Check Whether It's A Leap Year Or Not Using Logical Operator
# include <stdio.h>
# include <conio.h>
main( )
{
int y;
clrscr( );
printf("Enter a year:");
scanf("%d",& y);
if(y % 4 == 0 & & y % 100 != 0 || y % 400 == 0);
printf("The above given year is a leap year.");
else
printf("The above given year is not a leap year.");
getch();
}
C Program To Find Leap Year Using Functions
# include <stdio.h>
# include <conio.h>
main()
{
int leap_year(year);
int year, lp;
printf("Enter the year:");
scanf ("%d", &year);
lp=leap_year(year);
if (lp)
{
printf("\nThe entered year is a leap year.");
}
else
{
printf("\nThe entered year is not a leap year.");
}
}
leap_year(int y)
{
int lp;
if (y%4==0)
{
lp=1;
}
else
lp=0;
return(lp);
}
ALSO CHECK THESE C PROGRAMS:
- C Program to print sum of individual digits of given number.
- C Program Program to accept a three digit number and print the sum of individual digits.
- C Program to accept a number and check the given number is Armstrong or not.
- C Program to print ODD numbers from 1 to 10.
- C Program to print natural numbers from 1 to 10 in reverse order.
- C Program to print sum of the natural numbers from 1 to 10.
- C Program to accept a number and print mathematical table of the given no.
- C Program to print 1 to 10 mathematical tables.
- C Program to print Fibonacci series.
...Back To C Program Index.
Comments
Post a Comment
Please share your opinions and suggestions or your experience in the comments section. This way we can all help each other...
Experienced guys can share their resumes at admin@interview-made-easy.com