我输入EOF的时候为什么不结束啊
#include"stdio.h"
#include"stdlib.h"
#include"string.h"
#define INIT_SIZE 100
#define INCREMENT 10
#define error 0
#define null 0
typedef struct
{
char *top;
char *base;
int stacksize;
}SqStack;
void InitStack(SqStack &S);
void PushStack(SqStack &S, char e);
int PopStack(SqStack &S, char &e);
void ClearStack(SqStack &S);
void InitStack(SqStack &S)
{
S.base=(char*)malloc(sizeof(char)*INIT_SIZE);
if(!S.base) exit(1);
S.top=S.base;
S.stacksize=INIT_SIZE;
}
void PushStack(SqStack &S, char e)
{
if(S.top-S.stacksize==0)
{
S.base=(char*)realloc(S.base, sizeof(char)*(INIT_SIZE+INCREMENT));
S.top=S.base+INCREMENT;
S.stacksize+=INCREMENT;
}
*S.top++=e;
}
int PopStack(SqStack &S, char &e)
{
if(S.base==S.top) return error;
e=*(--S.top);
return 1;
}
void ClearStack(SqStack &S)
{
while(S.top!=S.base)
(--S.top);
}
void print(SqStack S)
{
char *p=S.base;
while(p!=S.top)
printf("%c",*p++);
}
int main()
{
char ch,e;
SqStack S;
InitStack(S);
ch=getchar();
while(ch!=EOF)
{
while(ch!='\n' && ch!=EOF)
{
switch(ch)
{
case'#':PopStack(S,*(S.top-1));break;
case'@':ClearStack(S);break;
default:PushStack(S,ch);break;
}
ch=getchar();
}
print(S);
ClearStack(S);
if(ch!=EOF)getchar();
}
return 0;
}