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
Explain about the constants which help in debugging?
Is c programming hard?
What is the meaning of ?
Where local variables are stored in c?
What are the Advantages of using macro
Which built-in library function can be used to match a patter from the string?
Write a program to generate the Fibinocci Series
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Is c a great language, or what?
What is the use of parallelize in spark?
Explain how can you restore a redirected standard stream?
What is the difference between struct and typedef struct in c?
Is main an identifier in c?
Can you tell me how to check whether a linked list is circular?
Where static variables are stored in c?