DFC系统的关键问题是什么?解决这些问题的关键技术是什么?
查看答案
执行以下程序段后,输出结果第一行为1,第二行为80。#includestruct student{int num;int score;}stu1;int main(){struct student *p;p=&stu1;p->num=1;p->score=80;printf("%d\n",stu1.num);printf("%d\n",stu1.score);return 0;}
执行以下程序后,如果输入2 王明 80,则输出结果第一行为,第二行为,第三行为。#includestruct student{int num;char name[20];int score;}stu1;int main(){struct student *p;p=&stu1;scanf("%d%s%d",&p->num,p->name,&p->score);printf("%d\n%s\n%d\n",stu1.num,stu1.name,stu1.score);return 0;}
补充以下程序,使得程序实现对结构体数组进行数据输入及输出。#includestruct student{int num;char name[20];int score;};int main(){struct student stu[5],*p;p=;int i;for(i=0;i<5;i++){scanf("%d%s%d",&p->num,,);p++;}p=stu;for(i=0;i<5;i++){printf("%d %s %d\n",,p->name,);p++;}return 0;}