A.int a[]={1,2,3} B.int a[10]={0} C.int a[] D.int a[5]
单项选择题for循环语句能够被改写为()语句。
A.复合 B.if C.switch D.while
单项选择题在下列的符号常量定义中,正确的定义格式为()。
A.#define M1 B.const int M2 20 C.#define M3 10 D.const char mark
单项选择题C语言中的系统函数fopen()是()一个数据文件的函数。
A.读取 B.写入 C.关闭 D.打开
单项选择题假定指针变量p定义为“int*p=malloc(sizeof(int));”,要释放p所指向的动态存储空间,应调用的函数为()。
A.free(p) B.delete(p) C.free(*p) D.free(&p)
单项选择题假定有定义为“intm=7,*p;”,则给p赋值的正确表达式为()。
A.p=m B.p=&m C.*p=&m D.p=*m