C程序中如何接受组合键
就是普通C环境中 接受组合键比如说按下CTRL+C 退出程序
如何实现 代码帖上来 谢谢
2009-07-24 23:06
2009-07-24 23:18
2009-07-24 23:35
程序代码:#include <stdio.h>
#include <stdlib.h>
int main(void)
{
while (1)
{
printf("A\n");
}
return 0;
}
2009-07-25 00:01