求解为什么说'表达式错误""非法字符“
#include<stdio.h>#include<stdlib.h>
#define MVNum 100//最大顶点数
#define Maxint 32767
enum boolean{FALSE,TRUE};
typedef char VertexType;
typedef int Adjmatrix;
typedef struct{
VertexType vexs[MVNum];//顶点数组,类型假定为char型
Adjmatrix arcs[MVNum][MVNum];//邻接矩阵,假定为int型
}MGraph;
第九行为什么 说 表达式错 非法字符啊 求解答 怎么改啊