#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 is the right type to use for boolean values in c?
What are the features of c languages?
What is difference between structure and union in c programming?
In which layer of the network datastructure format change is done
Why void main is used in c?
What is 02d in c?
Why do we need arrays in c?
Why do we use & in c?
What is array of structure in c?
How do you search data in a data file using random access method?
What is action and transformation in spark?
What are types of preprocessor in c?
What does *p++ do?
What do you mean by dynamic memory allocation in c?
What are identifiers and keywords in c?