I have the following code. Why its undefined to derefrence union pointers in the following way ?
extern union MyUn *P1;
extern union MyUn *P2;
extern void myfunc(void)
{
*P1 = *P2;
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That has nothing to do with unions in particular, and it’s not “undefined”, either: It’s simply a compiler error if you try to dereference a pointer to an incomplete type (for obvious reasons).