write a program that accepts 3 numbers from the user. dispaly
the values in a descending order.

Answer Posted / palani222samy

include<stdio.h>
int main()
{
int a,b,c;
printf("enter the a value")

Is This Answer Correct ?    2 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the two forms of #include directive?

883


Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers

1662


What is static and auto variables in c?

803


How to write a code for reverse of string without using string functions?

1844


Explain what is the purpose of "extern" keyword in a function declaration?

825


Explain what are preprocessor directives?

834


Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?

818


a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none

885


what is a NULL Pointer? Whether it is same as an uninitialized pointer?

1043


Explain what is operator promotion?

848


How can I pad a string to a known length?

800


a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above

885


What is f'n in math?

838


The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

3280


What is a memory leak? How to avoid it?

902