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
Are pointers integers in c?
In which language linux is written?
What does struct node * mean?
What is array of pointers to string?
Explain the Difference between the New and Malloc keyword.
write a program to copy the string using switch case?
Which is better oop or procedural?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Which is the memory area not included in C program? give the reason
What language is lisp written in?
Why c is called procedure oriented language?
Explain about the constants which help in debugging?
What does the c preprocessor do?
What is the main difference between calloc () and malloc ()?
Can you think of a logic behind the game minesweeper.