#include #include #include #include char S[50][100],res[100]; int top=-1; void push(char *c) { strcpy(S[++top],c); } void pop() { strcpy(res,S[top--]); } void clear(char *c) { int i,j=strlen(c); for(i=0; i