无法初始化struct-C2224 Error中的struct

时间:2017-10-17 12:09:04

标签: c

我正在尝试在此代码中初始化C中的字符串:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#pragma warning(disable:4996)

struct person{
    char name[10];
    int id;
}; typedef person_t;

struct family{
    person_t father;
    person_t mother;
    person_t kid[10];
}; typedef family_t;

void main()
{
     family_t fam;
     fam.father.name = "sdsd";
}

这段代码给了我C-2224 Eror。 如何访问类型为family_t的struct的类型为person_t的eache结构?

0 个答案:

没有答案