『壹』 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);
}