211 views

Please log in or register to answer this question.

Related questions

4 votes
4 votes
1 answer
2
ritwik_07 asked Jun 10, 2023
441 views
#include<stdio.h #include<string.h #define MAX(x, y) ((x) (y) ? (x) : (y)) int main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i, j, k); return ...
0 votes
0 votes
1 answer
3