Answer Posted / aravind
#include<stdio.h>
int main()
{
int a,b,c,d;
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 ? | 13 Yes | 2 No |
Post New Answer View All Answers
Why calloc is better than malloc?
What are the application of c?
Can true be a variable name in c?
What are types of functions?
How do you define CONSTANT in C?
Explain how can I manipulate strings of multibyte characters?
What is the explanation for modular programming?
What is a ternary operator in c?
What does c mean in basketball?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What are header files why are they important?
What are c preprocessors?
Why do we use return in c?
What is a buffer in c?
What is a good data structure to use for storing lines of text?