C/C++教程

C:错误: C++ style comments are not allowed in ISO C90

本文主要是介绍C:错误: C++ style comments are not allowed in ISO C90,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

错误

memory.c:1:12: error: initializer element is not constant
memory.c:1:23: error: C++ style comments are not allowed in ISO C90
  char *d = malloc(-1);//1000);
                       ^
memory.c:1:23: error: (this will be reported only once per input file)

原因

在ISO C90标准里,双斜杠不是注释的格式。在后续的版本才出现的注释格式。这个错误只报一次。

这篇关于C:错误: C++ style comments are not allowed in ISO C90的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!