写一个c++ helloworld
时间: 2023-04-05 07:04:55 浏览: 102
Hello World.rar_c++ hello world_world
程序。
Sure, here's a simple C program that prints "Hello, world!" to the console:
```
#include <stdio.h>
int main() {
printf("Hello, world!\n");
return 0;
}
```
Hope that helps!
阅读全文