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
What is the difference between functions abs() and fabs()?
Write a program to reverse a given number in c language?
Is c is a low level language?
Why ca not I do something like this?
what are the 10 different models of writing an addition program in C language?
Explain how are 16- and 32-bit numbers stored?
What are the types of assignment statements?
Are pointers integers in c?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
Explain how can I convert a number to a string?
Why isnt there a numbered, multi-level break statement to break out
What is a pointer in c?
Can we access the array using a pointer in c language?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
Can you add pointers together? Why would you?