아래는 모범 틀 #include using namespace std; struct Node { char ch; Node* next; }; Node buf[100]; int bufCnt; Node* head; Node* myAlloc(int ch, Node* next) { buf[bufCnt].ch = ch; buf[bufCnt].next = next; return &buf[bufCnt++]; } void addNode(char ch, Node *next) { head = myAlloc(ch, head); } int main() { return 0; } 이건 내가 푼 것 #include using namespace std; struct node { char abc; node* next; }; node* h..