Syntax
struct [<struct type name>] {

[<type> <variable-name[, variable-name, ...]>] ;
.
.
.

} [<structure variables>] ;



Example

#include <string.h>

struct my_struct {
char name[80], phone_number[80];
int age, height;
} my_friend;

void func() {
strcpy(my_friend.name,"Mr. Wizard"); /* accessing an element */
}

struct my_struct my_friends[100]; /* declaring additional variables */