在linux下用C语言编程,当在键盘上输入—>时候,会作出一些反应
时间: 2023-12-10 18:03:06 浏览: 135
在 Linux 下使用 C 语言编程时,当在键盘上输入 "->" 时,通常不会有特别的反应,因为箭头符号 "->" 本身只是一个键盘输入,对于操作系统来说并没有什么特殊的含义。
如果你想在程序中捕获用户输入的箭头符号 "->",可以通过使用 getchar() 函数或者类似的输入函数来读取用户的键盘输入。例如,下面的代码可以读取用户输入的箭头符号 "->" 并打印出来:
```
#include <stdio.h>
int main() {
char c1, c2;
printf("Please enter ->: ");
c1 = getchar();
c2 = getchar();
if (c1 == '-' && c2 == '>') {
printf("You entered ->\n");
} else {
printf("You did not enter ->\n");
}
return 0;
}
```
在上面的代码中,首先使用 getchar() 函数读取用户输入的第一个字符,然后再读取第二个字符。如果用户输入的是箭头符号 "->",那么就会打印出 "You entered ->",否则就会打印出 "You did not enter ->"。
阅读全文