c code struct definition code example
Example: instance for c in struct
struct listitem {
int val;
char * def;
struct listitem * next;
};
struct listitem {
int val;
char * def;
struct listitem * next;
};