C/C++内存分配问题
#include <iostream > #include <string >
#include <stdlib.h >
using namespace std;
void f1(char *);
char* f2();
char* f3();
void f4(char **,int );
void f1(char * str){
str=(char *)malloc(100);
printf("%p\n",str);
}
char *f2(){
char str[]="abc";
return str;
}
char *f3(){
char *str="abc";
return str;
}
void f4(char **p,int m)
{
*p=(char *)malloc(m);
}
int main(){
char *a=NULL;
//f1(a); //为什么这里程序会崩溃
//a=f2();//为什么这里会输出乱码
//a=f3(); //这个和下面那个为什么能正确输出字符串
f4(&a,100);
strcpy(a,"Hello");
printf(a);
return 0;
}
另还有一个程序
int main()
{
char *str=NULL;
str=(char *)malloc(100);
free(str);
if(str!=NULL){
strcpy(str,"Hello");
printf(str);
}
return 0;
}为什么这个程序能正确执行