写一段输出hello world的C++代码
时间: 2023-05-24 14:01:40 浏览: 95
用C语言写的输出hello world源代码.zip
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!
阅读全文