C语言动态分配内存及回收

2021-07-23 03:55

阅读:533

标签:pac   string   nbsp   语言   str   int   代码   动态分配内存   amp   

用malloc和free;类似与C++的new和delete

代码:

#include 
#include string>

using namespace std;

int main(int argc, char* argv[])
{
    void* ptr = (void*)malloc(100);
    void* tPtr = (void*)malloc(200);
    cout//0x61fe18
    cout//0x61fe10
    cout//0xeb1ac0
    cout//0xeb5cc0

    free(ptr);
    free(tPtr);    
    return 0;
}

 

C语言动态分配内存及回收

标签:pac   string   nbsp   语言   str   int   代码   动态分配内存   amp   

原文地址:https://www.cnblogs.com/judes/p/15013610.html

上一篇:加密算法

下一篇:CSS字体图标


评论


亲,登录后才可以留言!