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 does d mean?
What is oops c?
What is a spanning Tree?
What are preprocessor directives in c?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)
What are nested functions in c?
What is %g in c?
What is a good way to implement complex numbers in c?
Which is the memory area not included in C program? give the reason
Explain how can you restore a redirected standard stream?
What is the difference between %d and %i?
What is the right type to use for boolean values in c? Is there a standard type?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
Why doesnt this code work?
Write a program to use switch statement.