代码搜索结果
找到约 10,000 项符合
K 的代码
k.bat
@echo off
rem ================================================================================
rem
rem 1.00aZ 22 Dec 03 BDW Compiling CCC's from the command line
rem 1.00aA 30 Dec 03 MdS
k.txt
K类
函数名: kbhit
功 能: 检查当前按下的键
用 法: int kbhit(void);
程序例:
#include
int main(void)
{
cprintf("Press any key to continue:");
while (!kbhit()) /* do nothing */ ;
cpr