shi.c(65): error C129: missing ';' before 'getFaultType'如何更改
时间: 2023-12-11 14:03:15 浏览: 64
电子-IIC.h
这个错误通常是因为代码中缺少了分号。你可以在函数 `getFaultType()` 的前一行添加一个分号,如下所示:
```c
// some code here
int getFaultType(int faultCode); // 添加分号
int main() {
// some code here
}
int getFaultType(int faultCode) {
// some code here
}
```
或者,你可以检查一下 `getFaultType()` 函数前面是否有其他语句没有以分号结尾,比如一个 if 语句或者一个声明语句,如果有,那么也需要在这些语句的结尾添加分号。
```c
// some code here
if (condition) {
// some code here
} // 添加分号
int getFaultType(int faultCode) {
// some code here
}
```
阅读全文