#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(){
char *ch;
ch=(char*)calloc(30,sizeof(char));
strcpy(ch,"ILOVEYOU");
printf("%s\n",ch);
free(ch);
return 0;
}
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(){
char *ch;
ch=(char*)calloc(30,sizeof(char));
strcpy(ch,"ILOVEYOU");
printf("%s\n",ch);
free(ch);
return 0;
}
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。