错误:expected ‘)’ before ‘PRId64’
时间: 2023-09-27 13:12:35 浏览: 172
python 使用Flask 出现 ValueError: Expected object or value 问题解决
这个错误通常是因为在代码中使用了 `<inttypes.h>` 中的宏,但没有包含该头文件。请确保在使用 `<inttypes.h>` 中的宏之前,先包含该头文件,例如:
```
#include <inttypes.h>
#include <stdio.h>
int main() {
int64_t my_int = 123456789;
printf("My int: %" PRId64 "\n", my_int);
return 0;
}
```
阅读全文