Interview Problem List
Login
New update is available. Click here to update.
Topics
Problem
Pointers Output
Easy
0/10
Problem statement
Send feedback
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
One or more answers may be correct
18 18
7 18
17 7
7 7
Settings