摘要:
// hellopoint.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #include char* GetMem(int nsize);void GetChar(char*p );int _tmain(int argc, _TCHAR* argv[]){ char* temp=NULL; temp=GetMem(18); printf("\ntemp add %x 内容如下%s",&temp,temp); char *temp2=NULL; GetChar(temp2); 阅读全文