【单选题】
设int a =-12,b =5;则条件表达式a <b ?a+2:b 的值为()
【单选题】
假定a和b为int型变量,则执行以下语句后b的值为a=1;b=10;do{b-=a;a++;}whileb--<0);
【单选题】
假定要动态分配一个类型为Worker的具有n个元素的数组,并由r指向这个动态数组,则使用的语句表达式为( )。
②
calloc(n,sizeof(struct Worker))
③
calloc(n*sizeof(struct Worker))
④
realloc(n,sizeof(struct Worker))
【单选题】
假定要动态分配一个类型为Worker的具有n个元素的数组,并由r指向这个动态数组,则使用的语句表达式为( )。
②
calloc(n,sizeof(struct Worker))
③
calloc(n*sizeof(struct Worker))
④
realloc(n,sizeof(struct Worker))
【单选题】
假定一个函数的参数说明为const int* a,则在函数体中执行( )操作非法。
【单选题】
假定一个函数的参数说明为const int* a,则在函数体中执行( )操作非法。
【单选题】
有以下说明语句:struct Point{int x;int y;};则叙述正确的是()
【单选题】
若int类型占4个字节,有定义inta[][4]={1,2,3,4,5,6,7,8};则表达式sizeof(a[0][1])的值为()。
【单选题】
假定指针变量p定义为“int *p=calloc(30,sizeof(int));”,要释放p所指向的动态内存,应使用语句( )。
【单选题】
假定指针变量p定义为“int *p=calloc(30,sizeof(int));”,要释放p所指向的动态内存,应使用语句( )。