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

Answers were Sorted based on User's Feedback



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

Answer / nitin garg

#include <stdio.h>
#include <conio.h>
#include <string.h>


int main()
{
int a,b,c;

printf("Enter Three Number
");
scanf("%d%d%d",&a,&b,&c);

if(a>b && a>c)
{
if(b>c)
printf("%d %d %d",c,b,a);
else
printf("%d %d %d",b,c,a);

}
if(b>a && b>c)
{
if(a>c)
printf("%d %d %d",c,a,b);
else
printf("%d %d %d",a,c,b);

}
if(c>a && c>b)
{
if(b>a)
printf("%d %d %d",a,b,c);
else
printf("%d %d %d",b,a,c);
}

getch();
}

Is This Answer Correct ?    0 Yes 0 No

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

Answer / anupama shelke

#include<stdio.h>
#include<conio.h>
main()
{
int a[3],i,j,temp;
clrscr();
for(i=0;i<3;i++)
{
printf("\nEnter the values:");
scanf("%d",&a[i]);
}
for(i=0;i<3;i++)
{
for (j=i+1;j<3;j++)
{
if(a[i]<b[i])
{
temp=a[i];
a[i]=b[i];
b[i]=temp;
}
}
}
for(i=0;i<3;i++)
{
printf("array is:%d",a[i])
}
getch();
return;
}

Is This Answer Correct ?    3 Yes 5 No

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

Answer / 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

More C Interview Questions

WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *

3 Answers   Infosys, TCS,


What is use of bit field?

0 Answers  


2. What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value

3 Answers   Accenture,


What is a nested formula?

0 Answers  


Why clrscr is used after variable declaration?

0 Answers  






What is the code for 3 questions and answer check in VisualBasic.Net?

0 Answers   Infosys,


C language questions for civil engineering

0 Answers   Tech Mahindra,


Toggle nth bit in a given integer - num

5 Answers   Qualcomm,


Write code for atoi(x) where x is hexadecimal string.

5 Answers   Adobe,


how to find string length wihtout using c function?

6 Answers  


How will you find a duplicate number in a array without negating the nos ?

0 Answers  


struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]

3 Answers  


Categories