What value does the variable z have after ALL of the code above executes?
Posted: Thu Jul 14, 2022 9:07 am
int x;
int y;
int z;
x=3;
y=4;
z = ++x * y++;
a) 9
b) 12
c) 16
d) 20
int y;
int z;
x=3;
y=4;
z = ++x * y++;
a) 9
b) 12
c) 16
d) 20