write a c program for greatest of three numbers without
using if statment

Answers were Sorted based on User's Feedback



write a c program for greatest of three numbers without using if statment..

Answer / sathishmani

void main()
{
int a=10,b=20,c=30,d;
d=((a>b)&&(a>c))?1:2;
switch(d)
{
case 1:
printf("%d",a);
break;
case 2:
d=(b>c)?b:c;
printf("%d",d);
break;
}
}

Is This Answer Correct ?    68 Yes 21 No

write a c program for greatest of three numbers without using if statment..

Answer / swathi

main()
{
int a,b,c,s1,big;
printf("enter 3 values");
scanf("%d %d %d", &a,&b,&c);
s1=(a>b)? a : b;
big= (s1>c)? s1 : c;
printf("largest of 3 no's=%d",big);
}

Is This Answer Correct ?    23 Yes 6 No

write a c program for greatest of three numbers without using if statment..

Answer / ragu

int call();
void main()
{
int a,b,c,d;
printf("enter the values");
scanf("%d%d%d",&a,&b,&c);
d=call();
}
call()
{
return(a>b?a>c?a:c:b>c?b:c);
}

Is This Answer Correct ?    28 Yes 19 No

write a c program for greatest of three numbers without using if statment..

Answer / suresh

main()
{
int a,b,c,big;
printf("enter 3 values");
scanf("%d %d %d", &a,&b,&c);
big= ((a>b)&&(a>c))? a :b>c?b:c;
printf("largest of 3 no's = %d",big);
}

Is This Answer Correct ?    6 Yes 2 No

Post New Answer

More C Interview Questions

a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list

0 Answers  


Explain what is the benefit of using an enum rather than a #define constant?

0 Answers  


How reliable are floating-point comparisons?

0 Answers  


How can variables be characterized?

0 Answers  


What is volatile in c language?

2 Answers   HCL, TCS,






List out few of the applications that make use of Multilinked Structures?

1 Answers   Accenture,


Can static variables be declared in a header file?

0 Answers  


write a program to concatenation the string using switch case?

0 Answers  


What are identifiers c?

0 Answers  


What is quick sort in c?

0 Answers  


Tell me about low level programming languages.

0 Answers   Amdocs,


consagous technology placement paper

3 Answers   Consagous, Sypra,


Categories