1. structArTest.c#include#pragma pack(push, 1)typedef struct Car { char brand[30]; int price; char color[30];}tag_Car;#define L 3void main() { tag_Car cars[L] = { 0, }; for (int i = 0; i 2. structPointer.c#includetypedef struct Food { char name[30]; int price; char taste[30];}tag_Food;void main() { tag_Food salmon = { "연어회", 29900, "물고기" }; tag_Food* PSalmon = &salmon; // 아주 불편해 매우 불편해...!!..