Question: Consider the following C code snippet, what will be the output? (2pts) int *x = 0; int y = 9; x = &y; *x *=
Consider the following C code snippet, what will be the output? (2pts)
int *x = 0;
int y = 9;
x = &y;
*x *= 3;
y +=3;
cout <<*&y;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
