Question.1
A developer writes the following code:
int x = 42; int *p = &x; *p = *p + 8; printf("%d", x);
What is the output?
Select Answer
42
50
8
Address of x
x