error C2143: syntax error : missing ';' before 'type' C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(11) : error C2143: syntax error : missing ';' before 'type' C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(13) : error C2065: 'i' : undeclared identifier C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(14) : error C2065: 'j' : undeclared identifier C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(16) : error C2065: 'arr' : undeclared identifier C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(16) : error C2109: subscript requires array or pointer type C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(16) : error C2109: subscript requires array or pointer type C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(16) : error C2102: '&' requires l-value C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(18) : error C2065: 'sum' : undeclared identifier C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(18) : error C2109: subscript requires array or pointer type C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(18) : error C2109: subscript requires array or pointer type C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(18) : error C2109: subscript requires array or pointer type C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(18) : error C2109: subscript requires array or pointer type C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(18) : error C2109: subscript requires array or pointer type C:\Users\lenvo\Desktop\CUITc语言题库答案\P237.C(18) : error C2109: subscript requires array or pointer type
时间: 2023-06-09 08:07:24 浏览: 231
C语言错误提示
arr': undefined structure
回答:这段错误提示是指你在编译时遇到了语法错误,具体的原因可能是代码中缺少了分号、标识符未被声明、尝试对非数组或指针类型进行下标操作等等。根据具体的错误提示,可以逐个查看代码中的对应行,找出错误并进行修复。可能需要注意的一点是,在第16行中,提示中提到了一个未定义的结构体arr,需要先进行定义或者进行include相关的头文件操作。
阅读全文