Answer Posted / udayakumarswamy
#include<stdio.h>
main()
{
int a,b,c;
clrscr();
if(a>b&&a>c)
{
printf("a is bigger than b and c");
}
else if(b>c)
{
printf(" b is bigger than a and c");
}
else
{
printf("c is bigger than a and b");
}
getch();
}
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
How can I read data from data files with particular formats?
What does calloc stand for?
What is a 'null pointer assignment' error?
What is the sizeof () operator?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Why isn't it being handled properly?
What do you mean by invalid pointer arithmetic?
Explain the concept and use of type void.
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Difference between macros and inline functions? Can a function be forced as inline?
What do the functions atoi(), itoa() and gcvt() do?
What are c header files?
What is the advantage of c?
Why doesnt the call scanf work?
What is the condition that is applied with ?: Operator?