我是靠谱客的博主 壮观电灯胆,这篇文章主要介绍c语言函数里开辟堆空间问题,现在分享给大家,希望可以做个参考。

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdlib.h>
void func(int **p)
{
int *temp;
temp= (int *)malloc(sizeof(int));
*temp = 100;
*p = temp;
printf("func %dn", **p);
}
int * func2()
{
int *p;
p = (int *)malloc(sizeof(int));
return p;
}
int main()
{
int *p = NULL;
func(&p);
//p = func2(); 如果调用func开辟堆空间一定要传递 地址过去 直接传递p是没用的
*p = 111;
printf("main %dn", *p);
free(p);
p = NULL;
system("pause");
return 0;
}
错误写法 假如func定义如下
void func(int *p)
{
	p = (int *)malloc(sizeof(int));
	*p = 100;
	printf("func %dn", *p);
}
调用 func(p) zhe shi 错误的 

最后

以上就是壮观电灯胆最近收集整理的关于c语言函数里开辟堆空间问题的全部内容,更多相关c语言函数里开辟堆空间问题内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(141)

评论列表共有 0 条评论

立即
投稿
返回
顶部