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
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Explain how do you declare an array that will hold more than 64kb of data?
regarding pointers concept
What is n in c?
When should you not use a type cast?
What is array in C
Differentiate fundamental data types and derived data types in C.
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Explain how can I right-justify a string?
Compare interpreters and compilers.
What is the concatenation operator?
How do I copy files?
Explain what is the general form of a c program?
What is substring in c?
What are structure types in C?