一起答
单选

下列数据定义语句中正确的是()

  • A.struct{int x;}x1
  • B.struct xx {int x;};
  • C.struct xx {int x};
  • D.struct xx {int x} x1.
试题出自试卷《全国自考高级语言程序设计(一)精选试题及答案8》
参考答案
查看试卷详情
相关试题
  1. 编写程序,要求输入两个数,比较大小,输出大数和小数(用指针实现)。

  2. 从键盘向一维数组中输入10个实数,计算并输出其最大值和平均值。

  3. 将20名学生的姓名和成绩由键盘输入,计算并输出平均成绩。

    #include< stdio.h>

    #define N 20

    struct student{char name[20];

    float score;

    };

    void main()

    {

    struct student s[N]

    int i;

    float average=________;

    for(i=0;i<N;i++)

    {

    scanf("%s%f", s[i]. name, &s[i]. score);

    average+=________;

    }

    average=________;

    printf("average =%7.2f\n",average);

    }

  4. 以下程序的功能是将无符号八进制数字构成的字符串转换为十进制整数。

    #include< stdio.h>

    #include< string.h>

    main()

    {

    char s[6], *p________;

    int n;

    gets(p);

    n=*p-________;

    while(________p!='\0')

    n=n*8+*p-'0';

    printf("%d\n",n);

    }

  5. #include< stdio.h>

    struct node

    {

    char name[20]

    int age;}

    ;void fun1( struct node s)

    {

    struct node n={"zhangsan", 23}

    s=n;

    }

    void fun2 (struct node *t)

    {

    struct node n ={"lisi", 24};

    *t=n;

    }

    int main(void)

    {

    struct node stu1={" wangwu",25},stu2={"zhaoliu",26};

    Fun1 (stu1);

    fun2(&stu2);

    printf("%d, %d\n", stu1. age, stu2. age);

    return 0;

    }

  6. #include<stdio.h>

    func(int y)

    {

    static int x =0;

    x+=y;

    printf("%,d", x);

    }

    void main()

    {

    int a=5;

    func(a);

    func(a);

    }

  7. 以下程序的功能为:从键盘输入若干学生的成绩,计算出平均值,并输出低于平均值的学生成绩,输入为负数时结束输入。

    #include <stdio.h>

    void main()

    {

    float x[200],sum=0.0,ave,a;

    int n=0,i;

    printf("Please input the mark: \n");

    scanf("%f", &a);

    while(a>=0.0&&n<200)

    {

    sum+=_______;

    x[n]=a;

    n++;

    scanf("%f", &a);

    }

    ave=_______;

    printf("OUTPUT: \n");

    printf("ave =%f\n",ave);

    for(i=0;i<n;i++)

    if_______

    printf("%f\n", x[i]);

    }

  8. #include< stdio.h>

    #define A2

    #define B(x) A*x/2

    int main(void)

    {

    float c,a=6;

    c=B(a);

    printf("%.lf\n",c);

    return 0;

    }

  9. #include< stdio.h>

    void f( int x, int *y)

    {*y+=++x;}

    void main()

    {

    int a=7,b=8;

    f(a,&b);

    printf("a=%d, b =%d\n",a,b);

    }

  10. C语言中,实现单分支选择结构的是_______语句,实现双分支选择结构的是if-else语句。