Understanding Structural Equivalence
问题 I have two types of structural equivalence ideas I am struggling to understand. VAR_1 = int VAR_2 = pointer to VAR_1 So here, I feel like they are structurally equivalent because the types would technically be both pointing to an integer type, correct? but then if you had something like VAR_3 = pointer to int Does the pointer to an int versus an integer declaration make them inequivalent? I am thinking that VAR_1 and VAR_2 are structually equivalent because they contain the same data in the