Answer Posted / mihir a kamdar
#include<stdio.h>
main()
{
int n1,n2,n3,big;
printf("Enter 3 No.=");
scanf("%d %d %d",&n1,&n2,&n3);
if(a>b)
big=a;
else
big=b;
if(c>big)
big=c;
printf("\n Largest No is=%d",big);
getch();
}
}
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Which is the memory area not included in C program? give the reason
What are the disadvantages of a shell structure?
What will be the outcome of the following conditional statement if the value of variable s is 10?
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Explain the use of #pragma exit?
How can I handle floating-point exceptions gracefully?
What is the use of putchar function?
I need testPalindrome and removeSpace
#include
What type is sizeof?
What is a pointer in c?
What do you mean by a local block?
Here is a neat trick for checking whether two strings are equal
Write a program to print "hello world" without using a semicolon?
What is static memory allocation? Explain
Place the #include statement must be written in the program?