typedef struct club
{
char name[30];
int size, year;
} GROUP;
This statement declares GROUP as a structure type with three members. Since a structure tag, club, is also specified, either the typedef name (GROUP) or the structure tag can be used in declarations.
Another Example:
typedef enum {FALSE=0, TRUE} Boolean;
void main ()
{
Boolean flag = TRUE;
}
Thanks
Gurjinder Singh Brar
http://dotnet-question-answer.blogspot.com