Answer Posted / g.ravi teja
#include<stdio.h>
int main()
{
int a,b,c;
printf("enter the numbers");
scanf("%d,%d,%d",&a,&b,&c);
if(a>b&&a>c)
printf("a is greater");
if(b>a&&b>c)
printf("b is greater");
else
printf("c is greater");
}
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Is main is user defined function?
Explain how can I make sure that my program is the only one accessing a file?
what are non standard function in c
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Why c is known as a mother language?
what do u mean by Direct access files? then can u explain about Direct Access Files?
Can we access the array using a pointer in c language?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
If errno contains a nonzero number, is there an error?
What is the scope of static variable in c?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Explain how do you generate random numbers in c?
What is the use of parallelize in spark?
What is volatile variable in c?
What is .obj file in c?