#include #include #include typedef int element; typedef struct link{ element data; struct link *link; }stack; typedef struct pstack{ stack *top; }thead; int is_empty(thead *s); void init(thead *s); void push(thead *s,element data); element pop(thead *s); element peek(thead *s); void display(thead *s); int main(void){ thead stack1; thead *p1 = &stack1; int i,n; init(p1); printf("숫자너어라\n"); scanf(..