C語言 庫函數(shù) malloc()
C語言 庫函數(shù) malloc()
C語言 標(biāo)準(zhǔn)庫 <stdlib.h>
C 庫函數(shù) void *malloc(size_t size) 分配所需的內(nèi)存空間,并返回一個指向它的指針。
1. 聲明
下面是 malloc() 函數(shù)的聲明。
void *malloc(size_t size)
2. 參數(shù)
- size -- 內(nèi)存塊的大小,以字節(jié)為單位。
3. 返回值
該函數(shù)返回一個指針 ,指向已分配大小的內(nèi)存。如果請求失敗,則返回 NULL。
4. 實例
下面的實例演示了 malloc() 函數(shù)的用法。
#include <stdio.h> #include <stdlib.h> int main() { char *str; /* 最初的內(nèi)存分配 */ str = (char *) malloc(15); strcpy(str, "codebaoku"); printf("String = %s, Address = %u\n", str, str); /* 重新分配內(nèi)存 */ str = (char *) realloc(str, 25); strcat(str, ".cn"); printf("String = %s, Address = %u\n", str, str); free(str); return(0); }
讓我們編譯并運行上面的程序,這將產(chǎn)生以下結(jié)果:
String = codebaoku, Address = 355090448 String = codebaoku.cn, Address = 355090448
相關(guān)文章
- C++ 運算符
- C++ 循環(huán)
- C++ 數(shù)組
- C++ 接口
- C++ map 用法
- C語言 字符串
- C語言 標(biāo)準(zhǔn)庫 <assert.h>
- C語言 標(biāo)準(zhǔn)庫 <setjmp.h>
- C語言 標(biāo)準(zhǔn)庫 <string.h>
- C# 判斷語句
- C# 數(shù)組 Array
- C# 文件的輸入與輸出
- C# 特性 Attribute
- C++ 把引用作為參數(shù)
- C++ 傳遞數(shù)組給函數(shù)
- C++ 中指向類的指針
- C++ 輸入輸出運算符重載
- C語言 庫函數(shù) gmtime()
- C# 堆棧(Stack)
- C# Array 類