미로 지침에 관하여

298 단어
#include <iostream>
using namespace std;
//    (    P78)
int main()
{
	int *pInt=new int;
	*pInt=10;
	delete pInt;
	//pInt=NULL;

	//       ,          
	//      ,    ,                     
	//           ;                           
	*pInt=20;

	return 0;
}

좋은 웹페이지 즐겨찾기