Question: Given the following code, what is the expected value for z? #include #define func(x, y) (x > y) ? y : x int main() {
Given the following code, what is the expected value for z?
#include
#define func(x, y) (x > y) ? y : x
int main()
{ int x = 10;
int y = 9;
int z = func(x++, ++y); }
Please explain, thanks!
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
