程序填空题:使用指针输出结构体变量的成员
使用指针输出结构体变量stu的成员name之值
#include<stdio.h>
int main(void)
{
struct student
{
int num;
char name[10];
float score[3];
} stu = {2012, "WuHua", {75.4f, 80, 92}};
struct student *ptr;
printf("%s\n", ); /* 必须使用指针变量ptr实现 */
return 0;
}
答案:
第1空:ptr=&stu;
第2空:ptr->name
#include<stdio.h>
int main(void)
{
struct student
{
int num;
char name[10];
float score[3];
} stu = {2012, "WuHua", {75.4f, 80, 92}};
struct student *ptr;
printf("%s\n", ); /* 必须使用指针变量ptr实现 */
return 0;
}
答案:
第1空:ptr=&stu;
第2空:ptr->name