题目内容

9.质量分析的重点内容()。

A. 判断企业产品的平均等级系数
B. 了解产品质量水平与其费用要求的关系
C. 找出企业质量工作的薄弱环节
D. 为组织下期生产过程中的质量管理和确定关键的质量控制点提供依据

查看答案
更多问题

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;}

答案查题题库