arielbatuigas999 arielbatuigas999 29-09-2021 Computers and Technology contestada What is the output of the following code?int *p; int *q; p = new int; *p = 43; q = p;*q = 52; p = new int; *p = 78; q = new int; *q = *p; cout << *p << " " << *q << endl;