GetMemory错误讲解(指针练习)
错误程序: void GetMemory( char *p ) { p = (char *) malloc( 100 ); } void Test( void ) { char *str = NULL
GetMemory错误讲解(指针练习)