Update appNew update is available. Click here to update.
Report an issue
What is the output
int a = 7;
int *c = &a;
c = c + 1;
cout  << a << "  " << *c << endl;
Options: