有以下程序structSTU{charnum[10];floatscore[3]...,sum);}程序运行后的输出结果是()
有以下程序structSTU{charnum[10];floatscore[3]...,sum);}程序运行后的输出结果是()
下列数组定义中,属于字符数组定义的选项是() A: intage[5]; B: charstuname[10]; C: floatscore[3]; D: intbrr[]={1,2,3};
下列数组定义中,属于字符数组定义的选项是() A: intage[5]; B: charstuname[10]; C: floatscore[3]; D: intbrr[]={1,2,3};
若定义结构体类型变量student,以下各项对结构体变量成员引用错误的是()。structstud_type{intnum;charname[10];intage;floatscore;}student;
若定义结构体类型变量student,以下各项对结构体变量成员引用错误的是()。structstud_type{intnum;charname[10];intage;floatscore;}student;
有以程序#include#includetypedefstruct{charname[9];charsex;floatscore[2];}STU;voidf(STUa){STUb={“Zhao”,’m’,85.0,90.0};inti;strcpy(a.name,b.name);a.sex=b.sex;for(i=0;i<2;i++)a.score[i]=b.score[i];}main(){STUc={“Qian”,’p’,95.0,92.0};f(c);printf(“%s,%c,%2.0f,%2.0f ”,c.name,c.sex,c.score[0],c.score[1]);}程序的运行结果是
有以程序#include#includetypedefstruct{charname[9];charsex;floatscore[2];}STU;voidf(STUa){STUb={“Zhao”,’m’,85.0,90.0};inti;strcpy(a.name,b.name);a.sex=b.sex;for(i=0;i<2;i++)a.score[i]=b.score[i];}main(){STUc={“Qian”,’p’,95.0,92.0};f(c);printf(“%s,%c,%2.0f,%2.0f ”,c.name,c.sex,c.score[0],c.score[1]);}程序的运行结果是
下面程序的运行结果是()。#includestdio.h#includestring.htypedefstruct{charname[9];charsex;floatscore[2];}stu;stuf(stua){stub={“zhao”,’m’,85.0,90.0};inti;strcpy(a.name,b.name);a.sex=b.sex;for(i=0;i2;i++)a.score[i]=b.score[i];returna;}intmain(){s௲ 垎 뗐敔 敔垎�敘垎၈Ǔ瘓礀Ǡ 㰰Ǒ 㰰Ǒ ብ盂剦௬Ѐ 㼈௲ብ盂 Ѐ 㰰Ǒᰀ狣Ԝ盜Љ 䕄
下面程序的运行结果是()。#includestdio.h#includestring.htypedefstruct{charname[9];charsex;floatscore[2];}stu;stuf(stua){stub={“zhao”,’m’,85.0,90.0};inti;strcpy(a.name,b.name);a.sex=b.sex;for(i=0;i2;i++)a.score[i]=b.score[i];returna;}intmain(){s௲ 垎 뗐敔 敔垎�敘垎၈Ǔ瘓礀Ǡ 㰰Ǒ 㰰Ǒ ብ盂剦௬Ѐ 㼈௲ብ盂 Ѐ 㰰Ǒᰀ狣Ԝ盜Љ 䕄
structstudent//struct结构student 结构名{intid;// 成员1学号charname[20];//成员2姓名char sex;//成员3性别intage;// 成员4年龄floatscore;// 成员3成绩};//结束定义结构struct studentstud1={01,"zhang",'f',18,80.5};struct student stud2={02,"liu",'m',19,96};stud1.id 是(1)stud2.age 是(2)stud2.name[2]是(3)修改第一个学生的成绩为99,对(4)=99
structstudent//struct结构student 结构名{intid;// 成员1学号charname[20];//成员2姓名char sex;//成员3性别intage;// 成员4年龄floatscore;// 成员3成绩};//结束定义结构struct studentstud1={01,"zhang",'f',18,80.5};struct student stud2={02,"liu",'m',19,96};stud1.id 是(1)stud2.age 是(2)stud2.name[2]是(3)修改第一个学生的成绩为99,对(4)=99