STRUCT XXX{ int x; float y; CHAR z;};int main(){ struct XXX *PTR=(struct XXX *)0; ptr++; printf("SIZE of STRUCTURE is: %d",*ptr); return 0;}
struct XXX{ int x; float y; char z;};int main(){ struct XXX *ptr=(struct XXX *)0; ptr++; printf("Size of structure is: %d",*ptr); return 0;}
Your experience on this site will be improved by allowing cookies. Read Cookie Policy