getch()可以得。
getch直接从键盘获取键值,不等待用户按回车,只要用户按一个键,getch就立刻返回,getch返回值是用户输入的ASCII码,出错返回-1.输入的字符不会回显在屏幕上.getch函数常用于程序调试中,在调试时,在关键位置显示有关的结果以待查看,然后用getch函数暂停程序运行,当按任意键后程序继续运行.
/*可以*/# include
#include
#include
# define MAX 100
# define LEN 80
int main(void)
{
char *p[MAX];
char text[LEN];
register int t,i;
memset(p,0,sizeof(p));
memset(text,0,sizeof(text));
puts("please input you word");
for(t=0; t
printf("%d: ", t+1);
fgets(text,LEN,stdin);
p[t] = (char *)malloc(strlen(text)+1);
strcpy(p[t],text);
printf("%s\n",*(p+t));
if(**(p+t)=='\n')
break;
}
for(i=0; i
free(p[i]);
}
memset(p,0,sizeof(p));
return 0;
}
#include
#include
{
char ch;
printf("这是个测试例子(按q退出):\n");
while ((ch=getch())!='q')
{
printf("你输入的字符为:%c\n",ch);
}
return 0;
}