struct rownode
{int rownum,colnum;
double q;
struct rownode * rownext;
};
struct colnode
{
int rownum,colnum;
double r;
struct colnode * colnext;
};
Description Resource Path Location Type
#19 extra text after expected end of number ldpc.c /ds line 11, external location: C:\ti\ccsv5\tools\compiler\c6000_7.4.2\include\hanshu.h C/C++ Problem
Shine:
按照struct colnode的写法试试,struct rownode{int rownum,colnum;double q;struct rownode * rownext;};
chenming li:
回复 Shine:
还是不行,错误提示还是这个 extra text after expected end of number