Stack handling string 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23#include #include #include char *stack[10]; int top = -1; char *pop() { char *temp = stack[top]; top--; return temp; } void push(char *_str) { char *temp; temp = (char *)malloc(strlen(_str) + 1); strcpy(temp, _str); top++; stack[top] = temp; return; } 더보기 이전 1 ··· 8 9 10 11 12 13 14 ··· 20 다음