关于二维数组邻接矩阵初始画图的问题
int **edge; //二维数组邻接矩阵//初始画图g
for(i=0;i<vmax;i++)
for(j=0;j<vmax;j++)
edge[i][j]=0;
出现这个问题:
Loaded 'ntdll.dll', no matching symbolic information found.
Loaded 'C:\Windows\SysWOW64\kernel32.dll', no matching symbolic information found.
Loaded 'C:\Windows\SysWOW64\KernelBase.dll', no matching symbolic information found.
First-chance exception in 数据结构_图.exe: 0xC0000005: Access Violation.
The program 'F:\数据结构\数据结构_图\Debug\数据结构_图.exe' has exited with code 0 (0x0).
该怎么解决?