题目内容

1.有以下程序#include#includestruct node{int num;struct node *next;};int main(){ struct node *p,*q,*r;p=(struct node *)malloc(sizeof(struct node));q=(struct node *)malloc(sizeof(struct node));r=(struct node *)malloc(sizeof(struct node));p->num=10; q->num=20; r->num=30; p->next=q;q->next=r;printf("%d\n",p->num+p->next->num);return 0;}程序运行后的输出结果是( )。

A. 10
B. 20
C. 30
D. 40

查看答案
更多问题

有以下程序输出结果是()。#includestruct stu{ int num; char name[10]; int age; };void fun(struct stu *p){ printf("%s\n",(*p).name); }int main(){ struct stu students[3]={{9801,"zhang",20},{9802,"Wang",19},{9803,"zhao",18}}; fun(students+2); }

A. zhang
B. zhao
C. wang
D. 18

若已有类型定义:struct date { int year; int month; int day;};写出下面程序的运行结果____ 。#includevoid change(struct date d){d.year=2008;d.month=d.day=8;}int main____{struct date date1={0,0,0};change(date1);printf("%d,%d,%dn",date1.year,date1.month,date1.day);return 0;}

下列哪些键控特效通过亮度来进行抠像?

A. 差值遮罩
B. 提取
C. 颜色差值键
D. 抠像清除器

中国电视使用PAL制,PAL制影片的帧速率是多少?

A. 24FPS
B. 25FPS
C. 29FPS
D. 30FPS

答案查题题库