Latest C++ Aptitude Question SOLUTION: What will be the O/P? main() { struct xyz { int i; }; struct xyz *p; struct xyz a; p=&a; p->i=10; printf("%d",(*p).i); } Options 1) 0 2) 10 3) Garbage Value 4) Compile T