摘 要: | 下面两句 C 语言代码int b[][3]={0,1.2.3}:int d[3][]=[1.2].{1,2,3},{1,2.3,4};编译时报错,不知道错在哪里,请指教,谢谢!int b[][3]={0,1,2.3}:正确,等价于 int b[2][3]=[0,1,2,),{3];int d[3][]=[L 2},{1,2,3},{1,2,3,4];错误,编译器不能确定数组的大小。我的操作系统是98,工具是用的 VC 6.0,在编译时产生的下面的代码,那么下面的代码中的括号内的数字代表什么意思,还有error 后的数字呢?我想知道我的程序错在哪里可以通过什么途径知道?谢谢!Compiling…CalWnd.cppE:StudyVCCalendarAppCalWnd.cpp(1092):error C2065:‘TTS_BALLON’:undeclared identifierE:StudyVCCalendarAppCalWnd.cpp(1092):error C2059:syntax error:')
|