What value does the variable y 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) 4
b) 5
c) 6
d) unknown/undefined
int y;
int z;
x=3;
y=4;
z = ++x * y++;
a) 4
b) 5
c) 6
d) unknown/undefined