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
structs*p=NULL; // tag naming an unknown struct declares itstructs { inta; }; // definition for the struct pointed to by pvoidg(void)
{
structs; // forward declaration of a new, local struct s// this hides global struct s until the end of this blockstructs*p; // pointer to local struct s// without the forward declaration above,// this would point at the file-scope sstructs { char*p; }; // definitions of the local struct s
}
see http://en.cppreference.com/w/c/language/struct
The text was updated successfully, but these errors were encountered: