我自己编的从键盘随机输入无数个字符在输出的程序为什么没结果
我想从键盘随机输入无数个字符然后在输出,所以编了下面的程序,请问为什么没结果?求指点!谢谢了!#include<stdio.h>
void main()
{
char *a=NULL;
scanf("%s",a);
while(*a!=NULL)
{
printf("%c",*a++);
}
}
#include<stdio.h> #include<stdlib.h> int main() { char a[100]; int i=0; gets(a); while(a[i]!='\0') { printf("%c",a[i++]); } system("Pause"); return 0; }