gpt4 book ai didi

c - 如何用write在C中输出单个字符?

转载 作者:太空狗 更新时间:2023-10-29 16:01:17 28 4
gpt4 key购买 nike

有人可以指导我如何打印单个字母,例如 C 中的“b”,同时仅使用 write 函数(不是 printf)。

我很确定它使用

#include <unistd.h>

你能告诉我写入属性是如何工作的吗?不太懂

int  write(  int  handle,  void  *buffer,  int  nbyte  );

你们中的一些人也可以介绍一些 C 初学者技巧吗?

我正在使用 UNIX。

最佳答案

你已经找到了你的函数,你现在需要的只是给它传递适当的参数:

int handle = open("myfile.bin", O_WRONLY);
//... You need to check the result here
int count = write(handle, "b", 1); // Pass a single character
if (count == 1) {
printf("Success!");
}

I did indeed want to use stdout. How do I write a version to display the whole alphabet?

您可以为标准输出使用预定义常量。它被称为 STDOUT_FILENO

如果你想写出整个字母表,你可以这样做:

for (char c = 'A' ; c <= 'Z' ; c++) {
write(STDOUT_FILENO, &c, 1);
}

Demo.

关于c - 如何用write在C中输出单个字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31885407/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com