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

What will be the output ?

Easy
0/10

Problem statement

int *ptr = 0;
int a = 10;
*ptr = a;
cout << *ptr << endl;
Options: One or more answers may be correct