Interview Problem List
Login
New update is available. Click here to update.
Topics
Problem
What will be the output ?
Easy
0/10
Problem statement
Send feedback
int a = 10; int *p = &a; int **q = &p; int b = 20; *q = &b; (*p)++; cout << a << " " << b << endl;
Options:
One or more answers may be correct
One or more answers may be correct
10 21
11 20
11 21
10 20
Settings