63. Pointer-i

Question.1

A developer writes the following code:

int x = 42;
int *p = &x;
*p = *p + 8;
printf("%d", x);

What is the output?

Need Help? Refer to the Quick Guide below

Select Answer

Restart quiz!