新微赢技术网

标题: 是不是野指针? [打印本页]

作者: CHLOE    时间: 2009-11-3 04:03
标题: 是不是野指针?
void GetMemory( char **p, int num )
{
 *p = (char *) malloc( num );
}

void Test( void )
{
 char *str = NULL;
 GetMemory( &str, 100 );
 strcpy( str, "hello" );
 printf( str );
}
str为空,那么会在申请空间之后得到地址吗?会不会是野指针?
作者: 天地之一    时间: 2009-11-3 04:03
你直接看不就看到了。
得到的地址是不是还是0。




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2