Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法使用 sscanf%c读取 a 的值char?我将如何为特定字符输入 unicode 或 ascii 的转义序列?
%c
char
sscanf("%c",chr);
您可以从输入中读取一个字符
char chr; scanf ("%c", &chr);
读取转义序列可以是特定于操作系统的。在大多数情况下,您必须告诉终端驱动程序不要将转义序列处理为其他操作(如输入行编辑),而是传递原始字符。一旦设置好,您就可以对每个字符重复上述顺序。