多种c语言helloworld代码
时间: 2023-10-23 21:10:42 浏览: 233
hello world_C语言_
好的,以下是几种C语言的helloworld代码:
1. 使用stdio.h库函数输出helloworld:
```c
#include <stdio.h>
int main() {
printf("hello, world!\n");
return 0;
}
```
2. 使用stdlib.h库函数输出helloworld:
```c
#include <stdlib.h>
int main() {
system("echo hello, world!");
return 0;
}
```
3. 使用unistd.h库函数输出helloworld:
```c
#include <unistd.h>
int main() {
write(1, "hello, world!\n", 14);
return 0;
}
```
阅读全文