我正在尝试在此代码中初始化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结构?