포인터로 함수 호출, 숫자를 출력#include using namespace std;void PrintNumber(int* pNumber){ cout 포인터와 레퍼런스로 두 수를 교환하는 함수를 제작#include using namespace std;void SwapByPointer(int* pA, int* pB){ if (pA == nullptr || pB == nullptr) return; // 예외처리 int temp; temp = *pA; *pA = *pB; *pB = temp;}void SwapByReference(int& refA, int& refB){ int temp; temp = refA; refA = refB; refB = temp;}int main(){ int A = 1; int B =..