方法1:
char *a;
a=(char*)malloc(100*sizeof(char));
if(a==NULL){printf("Out of memorr!");exit(1);}
memset(a,0,100);
方法2:
char a[100]={'/0'};
方法3:
char *a;
a=(char*)calloc(100*sizeof(char));
if(a==NULL){printf("Out of memorr!");exit(1);}
注意使用char *a,一定要想想是否要特别申请内存空间。