用c++写一段hello world代码
时间: 2023-09-08 09:14:59 浏览: 166
用C语言写的输出hello world源代码.zip
Sure! 这里是用 c 写的 hello world 代码:
```c
#include <stdio.h>
int main() {
printf("Hello, world!\n");
return 0;
}
```
这段代码的功能是在命令行输出 "Hello, world!"。你可以把它保存为一个 .c 文件,用编译器编译并且执行这个程序。
阅读全文