You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have noticed that assigning a member variable (word type) of one struct from the word member variable of another (different) struct does not seem to work.
eg: If we have:
struct STRUCT1 { word a }
struct STRUCT2 { word b }
pointer.STRUCT1 pS1
pointer.STRUCT2 pS2
then
pS1->a = pS2->b
does not result in the correct value in pS1->a
The text was updated successfully, but these errors were encountered:
I have noticed that assigning a member variable (word type) of one struct from the word member variable of another (different) struct does not seem to work.
eg: If we have:
struct STRUCT1 { word a }
struct STRUCT2 { word b }
pointer.STRUCT1 pS1
pointer.STRUCT2 pS2
then
pS1->a = pS2->b
does not result in the correct value in pS1->a
The text was updated successfully, but these errors were encountered: