C언어를 이용한 간단한 스택 구현스택사이즈 : 100 #include #define stackSize 100int stack[stackSize];int top = -1;int isFull(){ if(top >= stackSize-1){ printf("Stack is Full\n"); return 1; } else return 0;}int isZero(){ if(top==-1){ printf("Stack is empty\n"); return 1; }else return 0;}void printStack(){ int i; for(i=0; i