‘壹’ C语言,怎样运行
#include<stdio.h>
#include<string.h>
structstud{
charname[10];
intscore[2];
}*p;
voidmain()
{
inti=0;
structstudt[4]={{"Lisa",98,87},{"Tom",89,86},{"John",68,79},{"Lili",94,90}};//定义结构体变量数组t并初始化数据
p=t+2;//p结构指针等于t加2
printf("%s
",t[0].name);//输出名字结果
printf("%d
",p->score[0]+p->score[1]);//输出两个分数的和
printf("%d
",t[2].score[0]+t[2].score[1]);//这个与上面的结果相同上面的是指针运算而已
scanf("%d",&i);
}