c语言中按任意键继续的代码
时间: 2023-08-30 14:05:58 浏览: 209
易语言获取任意按键对应的键代码
你可以使用以下代码实现在控制台中输出 "Press any key to continue..." 的提示信息,等待用户按下任意键后继续程序的执行:
```
#include <stdio.h>
#include <conio.h>
int main() {
printf("Press any key to continue...\n");
getch(); // 等待用户按下任意键
return 0;
}
```
注意,需要包含 `conio.h` 头文件才能使用 `getch()` 函数。该函数会等待用户按下任意键,并返回用户按下的键值。在本例中我们并不需要使用返回值,只需简单地调用该函数即可。
阅读全文