Multiple choice technology programming languages What is the output of the following? int main() { ... int *p=new int(87); ... } compile time error run time error p is initialized to 87 space for an array of 87 integers is allocated Reveal answer Fill a bubble to check yourself C Correct answer Explanation In C++, new int(87) allocates memory for a single int and initializes it to 87. The pointer p points to this allocated int containing value 87. Option D would require new int[87](array syntax).