#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 / sunil v r
11,6,11
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is a function in c?
What is the right type to use for boolean values in c? Is there a standard type?
How many levels of pointers have?
Do you know what are the properties of union in c?
Why we use conio h in c?
What is extern keyword in c?
What is uint8 in c?
What are the general description for loop statement and available loop types in c?
Should I learn data structures in c or python?
can we have joblib in a proc ?
What is the equivalent code of the following statement in WHILE LOOP format?
Where are the auto variables stored?
Explain how can a program be made to print the line number where an error occurs?
Is stack a keyword in c?
What is the difference between text and binary i/o?