C++
Programming and Technical
Programming
Program
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 Time Error
Read Solution (Total 0)
C++ Other Question