单行注释 - 无法在Solaris上编译
我正在尝试在 Solaris 上编译 C 程序。它抱怨以 //
开头的注释行。
我是Solaris的新手。请提出一个解决方案。
ss0iconv.c
// This is line 193
输出:
src/c_asm/sol/ss0iconv.c", line 193: syntax error before or at: /
I'm trying to compile a C program on Solaris. It's complaining on lines having comments starting with //
.
I'm new to solaris. Please suggest a solution.
ss0iconv.c
// This is line 193
Output:
src/c_asm/sol/ss0iconv.c", line 193: syntax error before or at: /
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
// 样式注释是在 C99 中引入的 - 您的编译器可能只支持 C89,因此您将无法使用它们。
The // style comments were introduced in C99 - your compiler probably only supports C89, so you won't be able to use them.