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

Pointers Output

Easy
0/10

Problem statement

What will be the output?

int a = 7;
int b = 17;
int *c = &b;
*c = 7;
cout  << a << "  “ << b << endl;
Options: One or more answers may be correct