To create a struct I can do one of the following:
// Method 1 Item *item = malloc(sizeof(Item)); Item _item = {.name="job"}; Item = &_Item; // Meth