题目内容
//以下程序的运行结果是【1】_____。#include int main(){struct student{int num; int age;};struct student stu[3] = { { 1001,20 },{ 1002,19 },{ 1003,21 } };struct student *p;p = stu;printf("%d,%d,%d,%d\n", (p)->num, (++p)->age, (*p).num, (*p).age);return 0;}
查看答案
搜索结果不匹配?点我反馈
更多问题