单项选择题

以下不能定义为用户标识符的是

A.scanf
B.Void
C._3com_
D.int
<上一题 目录 下一题>
热门 试题

单项选择题
以下选项中不能正确把cl定义成结构体变量的是
A. typedef struct   { int red;    int green;    int blue;   } COLOR;      COLOR cl;
B.struct color cl   { int red;   int green;    int blue;   }
C.struct color   { int red;   int green;   int blue;   } cl;
D.struct   { int red;    int green;    int blue;   } cl;
单项选择题
已定义以下函数 fun(char *p2, char *p1) { while((*p2=*p1)!= 0){ p1++;p2++; } } 此函数的功能是()

A.将p1所指字符串复制到p2所指内存空间
B.将p1所指字符串的地址赋给指针p2
C.对p1和p2两个指针所指字符串进行比较
D.检查p1和p2两个指针所指字符串中是否有''\0''

相关试题
  • 十六进制数100转换为十进制数为
  • 已定义以下函数 fun(int *p) { ret...
  • 有以下程序 #include <stdio.h> mai...
  • 若有定义:int *p[3];,则以下叙述中...
  • 以下不能正确定义二维数组的选项是