程序如下:
但在VC++6.0中运行有很多错误,可以看一下么?
#include "stdio.h"
#include "string.h"
#define maxlen 50
typedef char elemtype;
elemtype SqList[maxlen];
void create(SqList L,int & n)
{
int i=1;
char ch;
while((ch=getchar())!='\n')
{
L[i]=ch;
i++;
}
n=i-1;
}
void disp(SqList L,int n)
{
for(int m=1;m<=n;m++)
printf("L[%d]=%c\n",m,L[m]);
printf("n=%d\n",n)
}
void main(int argc,char * argv[])
{
Sqlist L;
int n;
create(L,n);
disp(L,n);
}