Answer Posted / g.ravi teja
#include<stdio.h>
int main()
{
int a,b,c;
printf("enter the numbers");
scanf("%d,%d,%d",&a,&b,&c);
if(a>b&&a>c)
printf("a is greater");
if(b>a&&b>c)
printf("b is greater");
else
printf("c is greater");
}
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What is the difference between text and binary i/o?
What is difference between && and & in c?
What do you mean by keywords in c?
Is javascript based on c?
What is the concatenation operator?
What is a static function in c?
Is there a built-in function in C that can be used for sorting data?
What is the difference between class and object in c?
What the different types of arrays in c?
Write a program to check prime number in c programming?
How do you determine whether to use a stream function or a low-level function?
What is pointer in c?
What is the difference between formatted&unformatted i/o functions?
What are external variables in c?
What is pivot in c?