国家开放大学24秋《C语言程序设计》形考任务4[答案]

作者:admin 字体:[增加 减小] 来源:国家开放大学 时间:2024-10-27 10:46

国家开放大学24秋《C语言程序设计》形考任务4[答案] 题目类型: 单选题 题目: 假定有"structbook{chartitle[40];floatprice;};structbookbook;",则不正确的语句为 选项: structbook*x=malloc(book) structbookx={"cprogra
国家开放大学24秋《C语言程序设计》形考任务4[答案]
题目类型:
  单选题
题目:
  假定有"struct book{char title[40]; float price;}; struct book book;",则不正确的语句为
选项:
  struct book *x=malloc(book)
  struct book x={"c programming",27.0}
  struct book *x=malloc(sizeof(struct book))
  struct book *x=&book


题目类型:
  单选题
题目:
  假定有"struct book{char title[40]; float price;} book;",则正确的语句为
选项:
  struct book x= &book
  struct book *x=&book
  struct book x=calloc(book)
  struct book *x=book


题目类型:
  单选题
题目:
  在结构类型的定义中,不同数据成员的定义项之间采用的分隔符是
选项:
  句点
  冒号
  分号
  逗号


题目类型:
  单选题
题目:
  假定一个结构类型的定义为 "struct a{int a,b; double c;};",则该类型的长度为
选项:
  8
  10
  12
  16


题目类型:
  单选题
题目:
  假定一个结构类型的定义为 "struct d{int a; d* next;};",则该类型的长度为
选项:
  4
  8
  12
  16


题目类型:
  单选题
题目:
  假定要访问一个结构指针变量x中的数据成员a,则表示方法为
选项:
  a
  x->a
  x(a)
  x{a}


题目类型:
  单选题
题目:
  与结构成员访问表达式x.name等价的表达式为
选项:
  x->name
  &x->name
  (&x)->name
  (*x)->name


题目类型:
  单选题
题目:
  假定一个链表中结点的结构类型为"struct aa{int data, struct aa *next;};",则next数据成员的类型为
选项:
  struct aa
  struct aa*
  aa
  int


题目类型:
  单选题
题目:
  假定一个链表的表头指针为f,结点中包含有data和next域,则向该链表的表头插入一个地址为p的结点时,应执行的操作为
选项:
  p->next=f
  p->next=f和f=p
  f=p->next
  f->next=p和f=p


题目类型:
  单选题
题目:
  标准输入设备键盘的文件流标识符是
选项:
  stdin
  stdout
  stderr
  stdio


题目类型:
  单选题
题目:
  表示文件结束符的符号常量为
选项:
  eof
  eof
  eof
  feof


题目类型:
  单选题
题目:
  c语言中打开一个数据文件的系统函数为
选项:
  fgetc()
  fputc()
  fclose()
  fopen()


题目类型:
  单选题
题目:
  从一个数据文件中读入以换行符结束的一行字符串的系统函数为
选项:
  gets()
  fgets()
  getc()
  fgetc()


题目类型:
  单选题
题目:
  向一个二进制文件中写入信息的函数fwrite()带有的参数个数为
选项:
  1
  2
  3
  4


题目类型:
  单选题
题目:
  在c语言中,为只写操作打开一个文本文件的方式为
选项:
  "a"
  "r"
  "r"
  "w"


题目类型:
  判断题
题目:
  在结构类型的定义中,其中的数据成员可以是本身类型的直接对象.
选项:
  对
  错


题目类型:
  判断题
题目:
  在结构类型的定义中,允许出现结构类型不完整的超前定义.
选项:
  对
  错


题目类型:
  判断题
题目:
  定义结构类型的变量时,不能够同时进行初始化.
选项:
  对
  错


题目类型:
  判断题
题目:
  使用一个结构类型时,必须一起使用关键字struct和类型标识符.
选项:
  对
  错


题目类型:
  判断题
题目:
  假定一个结构类型的定义为 "struct a{int a,b; a* c;};",则该类型的长度为12.
选项:
  对
  错


题目类型:
  判断题
题目:
  假定一个结构类型的定义为 "struct b{int a[5]; char* b;};",则该类型的长度为20.
选项:
  对
  错


题目类型:
  判断题
题目:
  执行calloc(n,8)函数调用时,将动态分配得到8*n个字节的存储空间.
选项:
  对
  错


题目类型:
  判断题
题目:
  执行malloc(sizeof(struct bb))函数调用时,得到的动态存储空间能够保存具有struct bb结构类型的一个对象.
选项:
  对
  错


题目类型:
  判断题
题目:
  假定要访问一个结构对象x中的由a指针成员所指向的对象,则表示方法为x.a.
选项:
  对
  错


题目类型:
  判断题
题目:
  假定要访问一个结构指针p所指对象中的b指针成员所指的对象,则表示方法为p->b.
选项:
  对
  错


题目类型:
  判断题
题目:
  与结构成员访问表达式(*fp).score等价的表达式是fp->score.
选项:
  对
  错


题目类型:
  判断题
题目:
  在c语言中,对二进制文件的所有不同打开方式共有6种.
选项:
  对
  错


题目类型:
  判断题
题目:
  c语言中的标准输入和输出设备文件都属于字符文件.
选项:
  对
  错


题目类型:
  判断题
题目:
  在一个磁盘数据文件的文件名中,文件主名和扩展名都是必须的,不可省略.
选项:
  对
  错


题目类型:
  判断题
题目:
  在数据文件打开方式字符串中,字符r、w和a具有确定的含义,分别代表读、写和追加方式.
选项:
  对
  错


题目类型:
  判断题
题目:
  一个磁盘数据文件的文件名由文件主名和扩展名所组成,其中间用圆点分开.
选项:
  对
  错


题目类型:
  判断题
题目:
  c语言系统中提供一个用来描述文件属性的类型标识符为file.
选项:
  对
  错


题目类型:
  判断题
题目:
  每次只能向文本文件中写入一个字符,不能一次写入一个字符串.
选项:
  对
  错


题目类型:
  判断题
题目:
  对二进制文件进行读和写操作将使用相同的系统函数.
选项:
  对
  错


题目类型:
  判断题
题目:
  在c语言中,系统函数fseek()用来移动数据文件中的文件位置指针.
选项:
  对
  错


题目类型:
  问答题
题目:
  #include struct worker { char name[15]; //姓名 int age; //年龄 float pay; //工资 }; void main() { struct worker x={"wanghua",52,4300}; struct worker y, *p; y=x; p=&x; printf("%s %d %6.2fn",x.name,y.age,p->pay); }
选项:
  


题目类型:
  问答题
题目:
  #include #include struct worker { char name[15]; //姓名 int age; //年龄 float pay; //工资 }; void main() { struct worker x; char *t="liouting"; int d=38; float f=3493; strcpy(x.name,t); x.age=d; x.pay=f; printf("%s %d %6.0fn",x.name,x.age,x.pay); }
选项:
  


题目类型:
  问答题
题目:
  #include struct worker {char name[15]; int age; float pay;}; int less(struct worker r1, struct worker r2) { if(r1.age
选项:
  


题目类型:
  问答题
题目:
  void qa(struct worker a[], int n) { int i; for(i=1; i
选项:
  


题目类型:
  问答题
题目:
  int count(struct intnode *f) { //f为指向一个单链表的表头指针 int c=0; while(f) { c; f=f->next; } return c; } 假定struct intnode的类型定义为: struct intnode {int data; intnode* next;}
选项:
  


题目类型:
  问答题
题目:
  void xw1(char* fname) { file* fout=fopen(fname,"w"); char a[20]; printf("每个字符串长度小于20,字符串end作为结束标志n"); while(1) { scanf("%s",a); if(strcmp(a,"end")==0) break; fputs(a,fout); fputc('n',fout); } fclose(fout); }
选项:
  


Tag:  C语言程序设计 

作业咨询:
点击这里给我发消息

论文咨询:
点击这里给我发消息

合作加盟:
点击这里给我发消息

服务时间:
8:30-24:00(工作日)