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
How can you read a directory in a C program?
What is the ANSI C Standard?
What is property type c?
write a c program in such a way that if we enter the today date the output should be next day's date.
Explain is it valid to address one element beyond the end of an array?
Explain what happens if you free a pointer twice?
Can we compile a program without main() function?
What does p mean in physics?
What are enumerated types?
Explain what is gets() function?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is null pointer in c?
How many types of sorting are there in c?
How do you define structure?
What is a union?