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

How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?

612


What are header files? What are their uses?

635


Explain what will the preprocessor do for a program?

596


which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;

2396


What is typedf?

666






What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file

664


Why is c so powerful?

683


What is pointer and structure in c?

569


What is storage class?

654


What is getch() function?

649


How can I direct output to the printer?

811


What is difference between structure and union with example?

593


What is c standard library?

690


Explain what will be the outcome of the following conditional statement if the value of variable s is 10?

740


Write a program to print numbers from 1 to 100 without using loop in c?

638