为了账号安全,请及时绑定邮箱和手机立即绑定

用typedef定义结构体为什么不能用?

用typedef定义结构体为什么不能用?

C
溯源1 2017-01-12 13:10:03
#include "stdio.h"void main(){ typedef struct student{ int age; int weight; char name[21]; }stu-t; stu-t yys={20,110,"小明"}; printf("%d,%d%,%s".yys.age,yys.weighht, yys.name");     }
查看完整描述

3 回答

?
望远

TA贡献1017条经验 获得超1032个赞

不合法的标识符,你应该是想用下划线
查看完整回答
反对 回复 2017-01-12
  • 望远
    望远
    你应该将name属性定义为char*类型。
  • 溯源1
    溯源1
    /* 还是不能用。name数组名,首地址,可以直接整体赋值,不是吗? */ #include "stdio.h" void main() { typedef struct student{ int age; int weight; char*name[21]; }stu_t; stu_t yys={20,110,"小明"}; printf("%d,%d,%s",yys.age,yys.weight,yys.name"); }
  • 望远
    望远
    直接定义为char* name;只有指针才能赋值地址,不要加[]
点击展开后面1
  • 3 回答
  • 0 关注
  • 2035 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信