struct ABC
{
int a;
float b;
char c;
};
int main(){
struct ABC *ptr=(struct ABC *)0;
ptr++;
printf(“Size of structure is: %d”,*ptr);
return 0;
}
Can u please explain this?
struct ABC
{
int a;
float b;
char c;
};
int main(){
struct ABC *ptr=(struct ABC *)0;
ptr++;
printf(“Size of structure is: %d”,*ptr);
return 0;
}
Can u please explain this?
EmbLogic Research & Competency Development Labs
Phone: +91 9818467776, 8527567776, 9650467776
Email: info@emblogic.com
Copyright © EmbLogic Embedded Technologies Pvt. Ltd.
Can you elaborate the question?