若已经定义: struct stu { int a, b; } student ; 则下列输入语句中正确的是( )
举一反三
- 若已经定义 typedef struct stu { int a, b; } student ; 则下列叙述中正确的是(
- 若已经定义: struct stu { int a, b; } student ; 则下列输入语句中正确的是( ) A: scanf("%d",&a); B: scanf("%d",&student); C: scanf("%d",&stu.a); D: scanf("%d",&student.a);
- 若已经定义struct stu { int a, b; } student ; 则下列输入语句中正确的是 。 A: scanf("%d",&a); B: scanf("%d",&student); C: scanf("%d",&stu.a); D: scanf("%d",&student.a);
- 若有定义: struct student { int age; int num; }; struct student stu,*p; 则以下正确的赋值语句是()
- 若有定义:struct student{ int age; int num;};struct student stu,*p;则以下正确的赋值语句是()。 A: p=stu; B: *p=*stu; C: *p=&stu; D: p=&stu;