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
what value is returned to operating system after program execution?
What is hungarian notation? Is it worthwhile?
When should you not use a type cast?
What is pointer and structure in c?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
Can a pointer be static?
What do mean by network ?
What is the scope of an external variable in c?
What is New modifiers?
What are different types of operators?
What is the size of empty structure in c?
What is a loop?
What is the data segment that is followed by c?
which is an algorithm for sorting in a growing Lexicographic order
Is there a way to compare two structure variables?