Update appNew update is available. Click here to update.
Topics

Pointers Output

Easy
0/10

Problem statement

What will happen in this code?

int a = 100, b = 200;
int *p = &a, *q = &b;
p = q;
Options: One or more answers may be correct