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 is the difference between far and near in c?
Where static variables are stored in memory in c?
What is substring in c?
What do you mean by dynamic memory allocation in c?
What is local and global variable in c?
Differentiate between calloc and malloc.
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
Explain what does the function toupper() do?
Explain how can you restore a redirected standard stream?
What are the disadvantages of a shell structure?
Explain what is a program flowchart and explain how does it help in writing a program?
Why C language is a procedural language?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
Is null always defined as 0(zero)?
What is an identifier?