码迷,mamicode.com
首页 > 编程语言 > 详细

c语言中,结构体的赋值

时间:2017-11-04 18:13:25      阅读:314      评论:0      收藏:0      [点我收藏+]

标签:eof   main   fas   struct   结果   null   clu   sizeof   结构   

c语言里,不能直接在定义结构体时,给其中元素赋值。

#include<stdio.h>
#include<malloc.h>
typedef struct tree
{
    int data;
    struct tree *left;
    struct tree *next=NULL;
}zhizhen;
int main()
{
    struct tree *a;
    a=(zhizhen*)malloc(sizeof(zhizhen));
    if(a->next==NULL)
    printf("asdfasdfa\n");
    else
    printf("no\n");
    return 0;
}

结果为:no

c语言中,结构体的赋值

标签:eof   main   fas   struct   结果   null   clu   sizeof   结构   

原文地址:http://www.cnblogs.com/Club-IT/p/7783638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!