Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图构建我的项目,但我得到了这个错误我真的不明白我试图以这种方式定义变量的问题:
char*c=malloc(100);
甚至这样:
char c;
谢谢
在函数中间声明变量是 C99 特性。您的编译器可能不支持 C99,或者您可能必须使用开关激活它。将声明移动到函数的顶部。