• 2022-06-29 问题

    以下 read 函数的调用形式中,参数类型正确的是() 。 A: ead(int fd,char *buf,int count) B: ead(int *buf,int fd,int count) C: ead(int fd,int count,char *buf) D: ead(int count,char *buf,int f

    以下 read 函数的调用形式中,参数类型正确的是() 。 A: ead(int fd,char *buf,int count) B: ead(int *buf,int fd,int count) C: ead(int fd,int count,char *buf) D: ead(int count,char *buf,int f

  • 2022-06-29 问题

    以下read函数的调用形式中参数类型正确的是(). A: ead(int fd,int count,char *buf) B: ead(int *buf,int fd,int count) C: ead(int fd,char *buf,int count) D: ead(int count,char *buf,int fd)

    以下read函数的调用形式中参数类型正确的是(). A: ead(int fd,int count,char *buf) B: ead(int *buf,int fd,int count) C: ead(int fd,char *buf,int count) D: ead(int count,char *buf,int fd)

  • 2022-05-27 问题

    以下fread函数的调用形式中,参数类型正确的是( )。 A: fread(char *buf, int size, int count, FILE fd); B: fread(int count, char *buf, int size, FILE fd); C: fread(int size, char *buf, int count, FILE fd); D: fread(int size, int count, char *buf, FILE fd);

    以下fread函数的调用形式中,参数类型正确的是( )。 A: fread(char *buf, int size, int count, FILE fd); B: fread(int count, char *buf, int size, FILE fd); C: fread(int size, char *buf, int count, FILE fd); D: fread(int size, int count, char *buf, FILE fd);

  • 2022-06-12 问题

    字符指针数组该如何定义? A: char *a[20]; B: char &a[20]; C: char *a[]; D: char *a;

    字符指针数组该如何定义? A: char *a[20]; B: char &a[20]; C: char *a[]; D: char *a;

  • 2021-04-14 问题

    【单选题】已知学生表(学号 CHAR(3),姓名 VARCHAR(8),性别 CHAR(2),出生日期 DATETIME),课程表(课程号 CHAR(3),课程名称VARCHAR(20),学分 int ),选课表(学号,课程号,成绩 int)。统计查询选课门数在2门以上的学号,课程门数,正确命令是:______。 A. SELECT 学号,count(课程号) 课程门数 from 选课 group by 学号 having count(课程号)>=2 B. SELECT 学号,count(课程号) 课程门数 from 选课 where count(课程号)>=2 group by 学号 C. SELECT 学号,count(课程号) 课程门数 from 选课 group by 学号 having count(学号)>=2 D. SELECT 学号,count(课程号) 课程门数 from 选课 where count(学号)>=2 group by 学号

    【单选题】已知学生表(学号 CHAR(3),姓名 VARCHAR(8),性别 CHAR(2),出生日期 DATETIME),课程表(课程号 CHAR(3),课程名称VARCHAR(20),学分 int ),选课表(学号,课程号,成绩 int)。统计查询选课门数在2门以上的学号,课程门数,正确命令是:______。 A. SELECT 学号,count(课程号) 课程门数 from 选课 group by 学号 having count(课程号)>=2 B. SELECT 学号,count(课程号) 课程门数 from 选课 where count(课程号)>=2 group by 学号 C. SELECT 学号,count(课程号) 课程门数 from 选课 group by 学号 having count(学号)>=2 D. SELECT 学号,count(课程号) 课程门数 from 选课 where count(学号)>=2 group by 学号

  • 2022-06-06 问题

    结构体定义正确的是? A: struct mater { char name[20]; }; B: struct mater { char name[20]; }mater; C: typedef struct{ char name[20]; }mater; D: typedef struct{ char name[20]; };

    结构体定义正确的是? A: struct mater { char name[20]; }; B: struct mater { char name[20]; }mater; C: typedef struct{ char name[20]; }mater; D: typedef struct{ char name[20]; };

  • 2022-06-09 问题

    以下的定义中,错误的是_______。 A: char a[20]="SUSE"; B: char *p="SUSE"; C: char a[20]; a="SUSE"; D: char *p; p="SUSE";

    以下的定义中,错误的是_______。 A: char a[20]="SUSE"; B: char *p="SUSE"; C: char a[20]; a="SUSE"; D: char *p; p="SUSE";

  • 2022-06-15 问题

    对字符数组s赋值,不合法的是 A: char s[]="china"; B: char s[20]={" china "}; C: char s[20];s=" china"; D: char s[20]={'c','h','i','n','a'};

    对字符数组s赋值,不合法的是 A: char s[]="china"; B: char s[20]={" china "}; C: char s[20];s=" china"; D: char s[20]={'c','h','i','n','a'};

  • 2022-06-04 问题

    对于函数 void Delay(unsigned char Count) //延时函数{while(Count!=0) Count--;}其声明 void Delay() ; 是否正确 ( <br/>) A: 正确 B: 错误

    对于函数 void Delay(unsigned char Count) //延时函数{while(Count!=0) Count--;}其声明 void Delay() ; 是否正确 ( <br/>) A: 正确 B: 错误

  • 2022-06-14 问题

    count函数不能统计的数据类型是() A: date B: char C: blob D: text

    count函数不能统计的数据类型是() A: date B: char C: blob D: text

  • 1 2 3 4 5 6 7 8 9 10