gpt4 book ai didi

c - 为什么\b 不被 ex 识别。 K&R 1-10?

转载 作者:行者123 更新时间:2023-12-02 00:13:46 25 4
gpt4 key购买 nike

#include <stdio.h>
/* replace tabs and backspaces with visible characters */

main()

{
int c;

while ((c = getchar()) != EOF) {
if (c == '\t')
printf("\\t");
if (c == '\b')
printf("\\b");
if (c == '\\')
printf("\\\\");
if (c != '\b')
if (c != '\t')
if (c != '\\')
putchar(c);
}
}

为什么我在按下退格键时看不到\b 退格键签名?

最佳答案

你需要了解 else,if-ladder 非常可怕。

而且您的终端可能不会发送单个退格字符,它可以是 a bit complicated实际终端程序如何表示那种“特殊”键(删除是另一个最爱)。

关于c - 为什么\b 不被 ex 识别。 K&R 1-10?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14212796/

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