猿问

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

#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");

    

}


溯源1
浏览 2036回答 3
3回答

望远

不合法的标识符,你应该是想用下划线
随时随地看视频慕课网APP
我要回答