Page 1 of 1

What value does the variable z have after ALL of the code above executes?

Posted: Thu Jul 14, 2022 9:07 am
by answerhappygod
int x;
int y;
int z;
x=3;
y=4;
z = ++x * y++;
a) 9
b) 12
c) 16
d) 20