文档名称 文档密级
strcpy(pszBuf, \ printf(\ free(pszBuf); return;
}
下面说法正确的是(): A、pszBuf的值永远为NULL; B、malloc内存后没有判断是否成功; C、strcpy拷贝越界;
D、GetMemory无法将申请的内存地址传递给pszBuf;
21、 如下程序用于把\字符串打印出来:
void PrintBLUE() {
char pcBlue[] = {'b','l','u','e'}; printf(\ return;
}
下面描述正确的是():
A、pcBlue数组初始化时没有字符串结束符; B、数组pcBlue定义时必须指明长度;
22、 请指出下面这段代码中的错误:
unsigned long FUNC_B ( unsigned long ulCount ) {
unsigned long ulSum = 0 ;
while( 0 <= ulCount ) {
ulSum += ulCount ; ulCount--; }
return ulSum ; }
void test(void)
{
unsigned long ulTotal = 0; ulTotal=FUNC_B(10); printf(\}
下面描述正确的是():
6
文档名称 文档密级
A、while循环判断始终为真; B、test打印输出55;
C、循环体内在执行2的32次方后,ulSum开始溢出翻转;
23、 此函数实现把32位IP地址(网络序)以字符串的方式打印出来:
char *IpAddr2Str(unsigned long ulIpAddr)
{
char szIpAddr[32];
unsigned long ulLocIpAddr = ntohl(ulIpAddr);//把网络序转话为主机序 (void)VOS_sprintf(szIpAddr, \ (ulLocIpAddr >> 16) & 0xff, (ulLocIpAddr >> 8) & 0xff, ulLocIpAddr & 0xff);
return szIpAddr; }
下面描述正确的是():
A、数组szIpAddr空间不够;
B、函数返回局部数组szIpAddr变量地址; C、输出的IP地址次序颠倒;
24、 如下程序用于把\字符串返回:
char *GetBLUE(void) {
char* pcColor ; char* pcNewColor;
pcColor = \
pcNewColor = (char*)malloc(strlen(pColor)); if(NULL == pcNewColor) {
return NULL;
}
strcpy(pcNewColor, pcColor); return pcNewColor; }
下面描述正确的是:
A、字符串“blue”存放在栈内; B、函数GetBLUE返回局部变量地址;
C、内存空间分配长度不够,strcpy函数拷贝越界;
25、 如下代码实现中,FUNC_A为每毫秒定时执行的函数,在该函数中,需要
实现每TIME_INTERVAL毫秒执行一次DO_Something()的操作。 请指出段代码中的错误: #define ULONG unsigned long #define TIME_INTERVAL 200
7
文档名称 文档密级
void DO_Something(void) {
/*....*/ return; }
void FUNC_A ( )
{
static ULONG ulPreCall = 0 ; ULONG ulNowInMsHigh = 0 ; ULONG ulNowInMsLow = 0 ;
( VOID ) VOS_Tm_Now( &ulNowInMsHigh, &ulNowInMsLow ) ; /* 获取当前的时间,以毫秒为单位,用64bits表示, ulNowInMsHigh为高32位, ulNowInMsLow为低32位*/
if( ( 0 == ulPreCall ) || ( ulNowInMsLow >= (ulPreCall + TIME_INTERVAL) ) ) {
ulPreCall = ulNowInMsLow; }
else {
return ; }
DO_Something(); return ; }
A、函数FUNC_A第一次被调用时,不执行Do_Something()操作; B、函数FUNC_A功能在一段时间后失效,因为ulNowInMsLow溢出翻转; C、ulPreCall不应该定义为静态变量;
26、 下面的代码中,函数Test执行完毕后,希望输出1。请指出错误:
void VarInit(unsigned char *pucArg) {
*pucArg = 1; return; } void Test()
{
unsigned long ulGlobal; VarInit(&ulGlobal); printf(\ return; }
下面描述正确的是:( )
8
文档名称 文档密级
A.给VarInit( )函数传递的参数类型错误 B.printf()输出格式错误
C.传给VarInit( )中参数pucArg的值为空指针
27、 #define OK 0
#define ERR 1
#define ERROR (-1) #define BUFFER_SIZE 256
char *GetMemory(unsigned long ulSize) {
char *pcBuf = NULL; pcBuf = (char *)malloc(ulSize); if(NULL == pcBuf) {
return ERROR; }
return pcBuf; }
void Test(void) {
char *pszBuf = NULL;
pszBuf = GetMemory(BUFFER_SIZE); if(NULL != pszBuf) {
strcpy(pszBuf, \ printf(pszBuf); free(pszBuf); }
return;
}
如下描述正确的是:
A、pszBuf指向的内存不能超过255
B、GetMemory函数的异常分支返回了-1,是一个非法地址 C、GetMemory中异常分支没有释放空间;
D、pcBuf为局部指针,指向的内存将在GetMemory被调用后释放
28、 void AddFunc (unsigned int a, unsigned int b, unsigned int * c)
{
*c = a + b; }
void main(void) {
unsigned char e = 200;
9
文档名称 文档密级
unsigned char f = 100; unsigned char g = 0;
AddFunc((unsigned int)e,(unsigned int)f,(unsigned int *)&g); printf(\
}
下面说法正确的是():
A 对g进行类型转换导致函数调用时写内存越界; B 对e、f进行类型转换导致函数调用时写内存越界; C 函数调用时不能改变g的值。
29、 #define NULL 0
#define MEM_OK 0 #define MEM_ERR 1
enum ENUM_STAT_ITEM {
STAT_ITEM0, STAT_ITEM1,
STAT_ITEM_BUTT };
typedef struct tag_PERM_COUNT_STAT_INFO {
unsigned short stat_item ; unsigned shrot number; } _SPermCountStatInfo;
_SPermCountStatInfo pcsi[STAT_ITEM_BUTT] = {
{ STAT_ITEM0, 16000}, { STAT_ITEM1, 50000} , }
unsigned long *pulStatDataBuffer = NULL; unsigned short AllocPermMemory(void)
{
unsigned short usBufferSize = 0; unsigned short usLoop = 0;
for(usLoop = 0; usLoop < STAT_ITEM_BUTT; usLoop ++)
{
usBufferSize += pcsi[usLoop].number ; }
pulStatDataBuffer = (unsigned long*)malloc(sizeof(unsigned long) * usBufferSize); if (NULL == pulStatDataBuffer) {
return MEM_ERR; }
10
百度搜索“77cn”或“免费范文网”即可找到本站免费阅读全部范文。收藏本站方便下次阅读,免费范文网,提供经典小说综合文库C语言编程基础考试试题(2)在线全文阅读。
相关推荐: