91学习

陪伴你每一天!

calloc函数的用法

#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;

}

加威信18790284560免费送POS机.jpg

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。