SyntaxFix
Write A Post
Hire A Developer
Questions
The following code creates an anonymous struct with the alias myStruct:
myStruct
typedef struct{ int one; int two; } myStruct;
You can't refer it without the alias because you don't specify an identifier for the structure.