使用C语言的write函数可以向文件中写入字符串。下面是一个示例代码: #include <fcntl.h> #include <unistd.h> #include <string.h> int main() { char *str = "Hello, world!\n"; int fd = open("file.txt", O_WRONLY | O_CREAT, S_IRUSR | S_IWUSR); // 打开文件,如果文件不存在则创建 ssi...