美文网首页
初学C语言

初学C语言

作者: RedMushrooms | 来源:发表于2018-01-28 15:13 被阅读0次

    初学C语言——结构(1)

    #include    <stdio.h>

    #include    <string.h>

    #include    <stdlib.h>

    struct students{

    char name[20];

    char sex[4];

    int age;

    };

    int main(int argc,const char * argv[]){

    struct students * qq=malloc(sizeof(struct students));

    strcpy(qq->name,"巧巧");

    strcpy(qq->sex,"人");

    qq->age=18;

    printf("name=%s\tsex=%s\tage=%d\t",qq->name,qq->sex,qq->age);

    free(qq);

    return 0;

    }

    //运行失败

    相关文章

      网友评论

          本文标题:初学C语言

          本文链接:https://www.haomeiwen.com/subject/rhtzaxtx.html