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 |
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
Why is C called a middle-level language?
What are local static variables?
Explain what is wrong with this program statement?
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
How to use c/c++ code in JAVA
10 Answers CDAC, IBM, Satyam, Scope International,
Can we use any name in place of argv and argc as command line arguments?
What is floating point exception error? And what are different types of errors occur during compile time and run time? why they occur?
What is meant by recursion?
Explain goto?
write a programme to convert temperature from farenheit to celcius?
What is union and structure?