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 data structures in c and how to use them?
How many types of arrays are there in c?
Is there a way to switch on strings?
What is f'n in math?
What are terms in math?
What is the purpose of type declarations?
What are the 5 types of organizational structures?
What does sizeof function do?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
When should you use a type cast?
What is mean by data types in c?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
How can I send mail from within a c program?
Why pointers are used?