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 is declaration and definition in c?

531


Why use int main instead of void main?

601


Can two or more operators such as and be combined in a single line of program code?

813


What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

630


Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?

602






What do you mean by command line argument?

650


Is r written in c?

731


What is malloc return c?

603


List some applications of c programming language?

560


What are operators in c?

588


Where local variables are stored in c?

560


Is main is a keyword in c?

613


An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above

661


Can we declare function inside main?

572


What are the types of type specifiers?

625