#define MAX(x,y) (x) > (y) ? (x) : (y)
main()
{
int i = 10, j = 5, k = 0;
k = MAX(i++, ++j);
printf("%d %d %d", i,j,k);
}
what will the values of i , j and k?
}
Answer Posted / mukul
ans : 11 6 0
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What are the c keywords?
Explain what is the use of a semicolon (;) at the end of every program statement?
What is an array in c?
What is the difference between local variable and global variable in c?
Why does the call char scanf work?
Explain what does the format %10.2 mean when included in a printf statement?
Can you return null in c?
int far *near * p; means
What are runtime error?
What is strcpy() function?
What is null in c?
Explain what are bus errors, memory faults, and core dumps?
What is variables in c?
What is meant by operator precedence?
Is it cc or c in a letter?