biggest of two no's with out using if condition statement
Answer Posted / abhilash.d
void main()
{
int a,b,big;
printf("enter the values of a,b");
scanf("%d%d",&a,&b);
big=a>b?a:b;
printf("biggest of two no is:%d",big);
}
| Is This Answer Correct ? | 19 Yes | 7 No |
Post New Answer View All Answers
how many key words availabel in c a) 28 b) 31 c) 32
What is function what are the types of function?
When is a void pointer used?
Explain what is meant by 'bit masking'?
What is the need of structure in c?
What is the c value paradox and how is it explained?
difference between Low, Middle, High Level languages in c ?
Are local variables initialized to zero by default in c?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What is the use of header?
What library is sizeof in c?
What are the parts of c program?
What are control structures? What are the different types?
How can I open a file so that other programs can update it at the same time?
Is c a great language, or what?