• 2021-04-14
    以下程序段,在空白处填写()能使程序正确运行并输出结果。
    #include
    struct student
    {long num;
    char name[10];
    char sex;
    float score;
    };
    main()
    {struct student stu={10101,"lili",'m',89.5},*pt;
    printf("%.2f",pt->score);
    }
  • pt=&stu;

    内容

    • 0

      下面程序的运行结果是: 。 typedef union student{ char name[10]; long sno; char sex; float score[4]; }STU; main(){ STU a[5]; printf("%d",sizeof(a)); }

    • 1

      有如下结构体定义,能够正确引用结构体的是()。 struct student { long num; char name[10]; char sex; int age; float score; }stu;

    • 2

      设有以下程序片段,则下面的叙述不正确的是( ) struct student { int num; char name[10]; float score; }stu;

    • 3

      struct student { int num; char sex; char name[20]; float score; } st ; 其中num是结构体 ________

    • 4

      以下结构体的定义语句中,正确的是______。? struct student {int num; char name[10];int age;}stu;|struct {int num; char name[10];int age;}student; struct student stu;|struct student {int num; char name[10]; int age;}; student stu;|struct student {int num; char name[10];int age;};stu;