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 |
Explain what is the difference between the expression '++a' and 'a++'?
What is the difference b/w Structure & Union?
How can I call a function, given its name as a string?
how to convert an char array to decimal array
int far *near * p; means
what is the flow of execution in cprogram? ex:printf();,scanf();
What is %g in c?
Sir i want e-notes of C languge of BAlaguruswami book i.e scanned or pdf file of balaguruswamy book on c language.PLEASE SEND ME on my mail id ajit_kolhe@rediff.com
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
Why do we write return 0 in c?
c program to manipulate x=1!+2!+3!+...+n! using recursion