内存四区代码演示

2021/7/14 7:06:59

本文主要是介绍内存四区代码演示,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

栈:

#define  _CRT_SECURE_NO_WARNINGS 
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

char *pMem1()
{
    char *p1 = "hellow12345";
    return p1;
}
//函数调用完毕后,函数内部的栈区变量就会被销毁

char *pMem2()
{
    char *p2 = "hellow12345";
    return p2;
}

int main(void)
{
    char *p1 = NULL;
    char *p2 = NULL;
    p1 = pMem1();
    p2 = pMem2();
    printf("p1 = %s, p1 = %p\n", p1, p1);
    printf("p2 = %s, p2 = %p\n", p2, p2);
    return 0;

}

/*
输出结果:
p1 = hellow12345, p1 = 00C57BAC
p2 = hellow12345, p2 = 00C57BAC
*/

 



这篇关于内存四区代码演示的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程