题目内容

10.成果控制主要不包括_________等内容。

A. 财务分析
B. 成本分析
C. 质量分析
D. 战略分析

查看答案
更多问题

设有说明:struct {char name[20],sex;int age;float score;} stu,*p=&stu;以下能正确输入结构体成员值的输入语句是( )

A. scanf("%c",*p.sex);
B. scanf("%s",p->name);
C. scanf("%d",stu.age);
D. scanf("%f",p->score);

设有以下语句:struct st{int n; struct st *next;};struct st a[3]={5,&a[1],7,&a[2],9,'\0'},*p;p=&a[0];则表达式( )的值是6。

A. p++->n
B. p->n++
C. (*p).n++
D. ++p->n

下列程序执行后输出的结果第一行是,第二行是,第三行是。#include struct s{ int x,y;}data[2]={10,100,20,200};int main(){ struct s *p=data;printf("%d\n",++p->x);printf("%d\n",data[0].x);printf("%d",(++p)->x);return 0;}

为创建链表,声明了如下结构体类型,请完善程序段。struct cc{ char name[20];int age;【1】 next;} *p;p=(【2】 )malloc(sizeof(【3】));

答案查题题库