在C语言中,你可以使用`printf`函数来输出"你好",代码如下:
```c
include
int main() {
printf("你好");
return 0;
}
```
这段代码首先包含了标准输入输出库``,然后在`main`函数中使用`printf`函数输出字符串"你好"。