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
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / piyush
the stament terminator(;) is missing......
so the answer is ,
c:error
| Is This Answer Correct ? | 2 Yes | 3 No |
How can I get the current date or time of day in a c program?
Explain what’s a signal? Explain what do I use signals for?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is the relation between # and include<stdio.h>
Write a program in C to reverse a number by recursive function?
Explain what are global variables and explain how do you declare them?
what is the advantage of software development
What does %c do in c?
What is getch() function?
Can you please explain the difference between strcpy() and memcpy() function?
Explain what are header files and explain what are its uses in c programming?
what is a function method?give example?