写一段输出hello world的C++代码
时间: 2023-05-24 18:01:40 浏览: 97
Hello World.rar_c++ hello world_world
Sure, here's a C code that outputs "Hello, world!" to the console:
```c
#include <stdio.h>
int main() {
printf("Hello, world!\n");
return 0;
}
```
I hope that helps!
阅读全文