问:C语言的一个基础程序--那出错了?
程序代码:
#include<stdio.h> #include<conio.h> main() { char a[50]; puts("请输入一个字符串"); a=getch(); puts(a); system("pause"); }getch()不能和puts()在一起使用吗?
#include<stdio.h> #include<conio.h> main() { char a[50]; puts("请输入一个字符串"); a=getch(); puts(a); system("pause"); }getch()不能和puts()在一起使用吗?