没有搜到到结果?点击这里求解答/求资源。
【判断题】
如果p是一个指向struct Student类型对象指针变量,那么执行p++时,p增量是结构struct Student长度。

正确
错误
【单选题】
假定一个数据对象int*类型,则指向该对象指针类型( )。

int
int *
int **
int ***
【单选题】
假定一个数据对象int*类型,则指向该对象指针类型( )。

int
int *
int **
int ***
【单选题】
假定有“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(BOOK));
struct BOOK **x=
【单选题】
假定有“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(BOOK));
struct BOOK **x=
【单选题】
假定一个单元格地址D25,则此地址类型是________。

相对地址
绝对地址
混合地址
三维地址
【单选题】
数组定义“inta[4][5];”,下列哪一个引用是错误()。

*a
*(*(a+2)+3)
a[2][3]
++a
【判断题】
sizeof (double) 得到一个整数。

正确
错误
【简答题】
假如数组元素是struct Student类型,则在实现换值时,临时变量temp也应定义[填空1]类型

【单选题】
定义一个4元素维整型数组,正确

floata[4];
inta[]={1,2,3,4,5};
inta[]={1,2,3};
inta[4]={1}