大虾们看看这程序出错在那啊!!!
#include"stdio.h"#include"iostream.h"
#include"string.h"
void getmemory(char **p)
{
*p=(char*)malloc(100);
}
void main()
{
char *str=NULL;
getmemory(&str);
strcpy(str,"hello word");
printf(str);
}
[ 本帖最后由 fanfan320 于 2010-5-24 15:15 编辑 ]