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
What are the two forms of #include directive?
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
What is static and auto variables in c?
How to write a code for reverse of string without using string functions?
Explain what is the purpose of "extern" keyword in a function declaration?
Explain what are preprocessor directives?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
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
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
Explain what is operator promotion?
How can I pad a string to a known length?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is f'n in math?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
What is a memory leak? How to avoid it?