This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// s1 is a structured field with two int fields: a and b | |
struct { | |
int a, b; | |
} s1, *ps1; | |
// s2 is the same type of structured field as s1, only that "type" has no name. | |
struct { | |
int a, b; | |
} s2, *ps2; |