谁能看看我写的无向图网络的建立怎么运行不了
#include<stdio.h>#define n 5
#define e 8
typedef char vertextype
typedef int edgestype;
typedef struct
{
vertextype vexs[5];
edgestype arcs[5][5];
int n,e;
}graph;
CREATGRAPH(ga)
GRAPH*ga;
{
int i,j,k;
int w;
for(i=0;i<n;i++)
ga->vexs[i]=getchar();
for(i=0;i<n;i++)
for(j=0;j<n;j++)
ga->arcs[i][j]=0;
for(k=0;k<e;k++)
{
scanf("%d%d%d",&i,&j,&w);
ga->arcs[i][j]=w;
ga->arcs[j][i]=w;
}
}
运行不了这个程序谁能帮我看看 谢谢了