精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

C語言 庫函數 malloc()

C語言 庫函數 malloc()

C語言 標準庫 <stdlib.h>C語言 標準庫 <stdlib.h>

C 庫函數 void *malloc(size_t size) 分配所需的內存空間,并返回一個指向它的指針。

 

1. 聲明

下面是 malloc() 函數的聲明。

void *malloc(size_t size)

 

2. 參數

  • size -- 內存塊的大小,以字節為單位。

 

3. 返回值

該函數返回一個指針 ,指向已分配大小的內存。如果請求失敗,則返回 NULL。

 

4. 實例

下面的實例演示了 malloc() 函數的用法。

#include <stdio.h>
#include <stdlib.h>

int main()
{
   char *str;

   /* 最初的內存分配 */
   str = (char *) malloc(15);
   strcpy(str, "codebaoku");
   printf("String = %s,  Address = %u\n", str, str);

   /* 重新分配內存 */
   str = (char *) realloc(str, 25);
   strcat(str, ".cn");
   printf("String = %s,  Address = %u\n", str, str);

   free(str);
   
   return(0);
}

讓我們編譯并運行上面的程序,這將產生以下結果:

String = codebaoku, Address = 355090448
String = codebaoku.cn, Address = 355090448

C語言 標準庫 <stdlib.h>C語言 標準庫 <stdlib.h>

下一節:C 庫函數 realloc()

C 簡介

相關文章