내일 코어타임을 위해 포인터에 대해서 알아보았당Pointeraddress : the location of the memeory, where that memory livesvalue : the data stored at that location, what memory lives therepointer : the value of the address. It is pointing that location. int* px = &x; //px라는 정수형 포인터는 변수 x의 주소를 가리킴int y = *px; //y값은 px라는 포인터가 가리키는 값 *가 타입과 함께 쓰일 때는 해당 타입값을 가리키는 포인터*가 타입과 함께 쓰이지 않을 때는 역참조 (go and grab that value) why do we us..