int *ptr = 0;
int a = 10;
*ptr = a;
 cout << *ptr << endl;
 Options
10
0
Error
None of these

Error
