structre in c code example
Example 1: struct in c
typedef struct {
char cognome[30];
char nome[20];
int voto;
}alunno;
Example 2: Structure of Structs in c
struct [structure_tag]
{
//member variable 1
//member variable 2
//member variable 3
...
}[structure_variables];