biggest of two no's with out using if condition statement

Answer Posted / ramanjaneyareddy

#include<stdio.h>
main()
{int a,b,c;
scanf("%d%d",&a,&b);
c=(a>b)?a:b;
printf("%d",c);
return(0);
}

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is type qualifiers?

669


Why are all header files not declared in every c program?

605


What is the difference between union and anonymous union?

841


What is pointer & why it is used?

608


Explain what is gets() function?

639






What is #include conio h?

598


How do you view the path?

672


Where are some collections of useful code fragments and examples?

721


What is the use of void pointer and null pointer in c language?

634


Write the control statements in C language

656


What are the salient features of c languages?

627


how do you execute a c program in unix.

641


Explain low-order bytes.

625


What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

819


What is a built-in function in C?

801