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
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are type modifiers in c?
Explain indirection?
Explain about block scope in c?
What the advantages of using Unions?
Which is best linux os?
Explain is it valid to address one element beyond the end of an array?
Why calloc is better than malloc?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Where are some collections of useful code fragments and examples?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
Is null equal to 0 in sql?
I have seen function declarations that look like this
Differentiate between new and malloc(), delete and free() ?
What is formal argument?
Is int a keyword in c?