久久99热66热这里只有精品,特黄特色的大片在线观看,亚洲日本三级在线观看,国产三级农村妇女在线,亚洲av毛片免费在线观看,哺乳叫自慰在线看,天天干美女av网

C/C++內存的筆試題

時間:2024-10-22 11:50:56 資料大全 我要投稿
  • 相關推薦

C/C++有關內存的筆試題

  void GetMemory(char *p)

C/C++有關內存的筆試題

  {

  p = (char *)malloc(100);

  }

  void Test(void)

  {

  char *str = NULL;

  GetMemory(str);

  strcpy(str, “hello world”);

  printf(str);

  }

  請問運行Test 函數(shù)會有什么樣的結果?

  答:程序崩潰,

C/C++有關內存的筆試題

。

  因為GetMemory 并不能傳遞動態(tài)內存,Test 函數(shù)中的 str 一直都是 NULL。

  strcpy(str, “hello world”);將使程序崩潰。

  char *GetMemory(void)

  {

  char p[] = “hello world”;

  return p;

  }

  void Test(void)

  {

  char *str = NULL;

  str = GetMemory();

  printf(str);

  }

  請問運行Test 函數(shù)會有什么樣的結果?

  答:可能是亂碼。

  因為GetMemory 返回的是指向“棧內存”的指針,該指針的地址不是 NULL,但其原現(xiàn)的內容已經被清除,新內容不可知,

資料共享平臺

C/C++有關內存的筆試題》(http://www.dameics.com)。

  void GetMemory2(char **p, int num)

  {

  *p = (char *)malloc(num);

  }

  void Test(void)

  {

  char *str = NULL;

  GetMemory(&str, 100);

  strcpy(str, “hello”);

  printf(str);

  }

  請問運行Test 函數(shù)會有什么樣的結果?

  答:(1)能夠輸出hello;(2)內存泄漏

  void Test(void)

  {

  char *str = (char *) malloc(100);

  strcpy(str, “hello”);

  free(str);

  if(str != NULL)

  {

  strcpy(str, “world”);

  printf(str);

  }

  }

  請問運行Test 函數(shù)會有什么樣的結果?

  答:篡改動態(tài)內存區(qū)的內容,后果難以預料,非常危險。

  因為free(str);之后,str 成為野指針,if(str != NULL)語句不起作用。

【C/C++內存的筆試題】相關文章:

C/C++筆試題目大全08-22

C++面試筆試題目07-16

阿里巴巴C++工程師筆試題目10-17

筆美國國家儀器試題目09-23

新浪筆經04-27

c 面試編程問題08-11

新聞總署筆經10-13

consulting firm筆經05-06

IBM公司筆經09-15

營銷卷筆經10-25