07/03/2016

C Program For Check Greater Among Two Number

Problem :- Write a C Program For Check Greater Among Two Number Using If /Else Statement .

Logic :- Here we need to compare two number and check both number are equal ,greater or less  first take a both number as a input or Compare both Number according to result print the statement like if first number is greater then print " First number is greater "
or 
if second number is greater then print "second number is greater and also add a one more condition if both number are equal " Both Number are Equal "

Try Yourself C Program To Find Greatest Among Three Numbers

Solution :-

#include<stdio.h>
int main()
{
float val1, val2;
printf("Enter The First Number :\n");
scanf("%f", &val1);

printf("Enter The Second Number :\n");
scanf("%f",&val2);

if(val1 >val2)
{
   printf("First Number is Greater Than Second\n");
}
else if(val2 > val1)
{
   printf("Second Number is Greater Than First\n");
}
else
{
   printf("Both Number are Equal");
}
return 0;
}

Output:-

C Program For Check Greater Among Two Number

Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: