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
What is getch?
What is && in c programming?
where are auto variables stored? What are the characteristics of an auto variable?
What is infinite loop?
How can I call a function with an argument list built up at run time?
Explain what is the purpose of "extern" keyword in a function declaration?
What is the mean of function?
A c program to display count values from 0 to 100 and flash each digit for a secong.reset the counter after it reaches 100.use for loop,. pls guys hepl me.. :(
Explain what header files do I need in order to define the standard library functions I use?
Explain #pragma statements.
What language is windows 1.0 written?
What is the process of writing the null pointer?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Explain how can you check to see whether a symbol is defined?
Do variables need to be initialized?