C++程序题目,没看懂,这个程序不是错的吗?

#define MAX_MEM_SIZE  100

int  GetMem(int iLen, void **ppMem)

{

if (NULL == ppMem)

{

return -1;

}

if (iLen <= 0)

{

return 0;

}

else if (iLen < MAX_MEM_SIZE)

{

*ppMem = malloc(iLen);

return iLen;

}

else

{

*ppMem = malloc(MAX_MEM_SIZE);

return MAX_MEM_SIZE;

}

}


void  test()

{

char *pMyMem;

int i;

int j;

i = GetMem(i, (void **)&pMyMem);

if (NULL != pMyMem)

{

for (j=0; j<i; j++)

{

pMyMem[j] = 0;

}

}

}

A) 因为pMyMem未初始化,test函数中的GetMem可能会返回-1

B) 因为i未初始化,test函数中GetMem可能返回比MAX_MEM_SIZE大的值

C) 因为pMyMem未初始化,for循环内的赋值操作可能会导致写内存异常

D) 无论pMyMem,i,j为何值时,test函数内都不会出现写内存异常

#c##笔试题目#
全部评论

相关推荐

11-05 07:29
贵州大学 Java
点赞 评论 收藏
分享
10-07 20:48
门头沟学院 Java
听说改名就会有offer:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务