Answer Posted / manish soni bca 3rd year jaipu
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c,max;
printf("Enter any 3 no");
scanf("%d %d %d",&a,&b,&c);
max=a>b?(a>c?a:c):(b>c?b:c);
printf("%d",max);
getch();
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Write a program to print factorial of given number without using recursion?
what is use of malloc and calloc?
What tq means in chat?
Is that possible to store 32768 in an int data type variable?
write a program to create a sparse matrix using dynamic memory allocation.
Explain what are reserved words?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
How can I handle floating-point exceptions gracefully?
What is string in c language?
What is the difference between union and structure in c?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is a constant?
Explain modulus operator. What are the restrictions of a modulus operator?
Explain logical errors? Compare with syntax errors.
How can I discover how many arguments a function was actually called with?