f=(x>y)?x:y
a) f points to max of x and y
b) f points to min of x and y
c)error
Answer Posted / guest
a) f points to max of x and y
if (x > y) is true.. x would be returned, else y.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What library is sizeof in c?
In C, What is the #line used for?
Explain how many levels deep can include files be nested?
How can I dynamically allocate arrays?
What does 2n 4c mean?
How can I split up a string into whitespace-separated fields?
What is the difference between union and anonymous union?
Explain data types & how many data types supported by c?
What are c identifiers?
What is "Hungarian Notation"?
What are valid operations on pointers?
What is 1f in c?
Subtract Two Number Without Using Subtraction Operator
What is union and structure in c?
How to Throw some light on the splay trees?