单行注释 - 无法在Solaris上编译

发布于 2024-08-26 13:16:18 字数 261 浏览 6 评论 0原文

我正在尝试在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

﹉夏雨初晴づ 2024-09-02 13:16:18

// 样式注释是在 C99 中引入的 - 您的编译器可能只支持 C89,因此您将无法使用它们。

The // style comments were introduced in C99 - your compiler probably only supports C89, so you won't be able to use them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文