Answer Posted / aravind
#include<stdio.h>
int main()
{
int a,b,c,d;
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 ? | 13 Yes | 2 No |
Post New Answer View All Answers
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
What is atoi and atof in c?
Write a program to print numbers from 1 to 100 without using loop in c?
what will be the output for the following main() { printf("hi" "hello"); }
Do you know null pointer?
What happens if a header file is included twice?
What is void main ()?
Describe explain how arrays can be passed to a user defined function
Is that possible to add pointers to each other?
What is sizeof c?
How is a structure member accessed?
Why does everyone say not to use gets?
What are the complete rules for header file searching?
How to Throw some light on the splay trees?