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
What tq means in chat?
What are the differences between Structures and Arrays?
hi send me sample aptitude papers of cts?
What are different types of variables in c?
What is the difference between array and pointer in c?
What are the general description for loop statement and available loop types in c?
How does #define work?
In which header file is the null macro defined?
How do you do dynamic memory allocation in C applications?
cavium networks written test pattern ..
What is the role of this pointer?
What is the use of getch ()?
How does placing some code lines between the comment symbol help in debugging the code?
What is the easiest sorting method to use?
What is wrong with this code?