(10%)
Determine whether the following code is correct or not. If it is
correct, predict its output. If it is incorrect, point out the
mistake(s).
// pointer to int
#include <iostream>
using std::cout;
using std::endl;
int main()
{
int number1 = 11;
int number2 = 22;
int* pnumber = &number1;
cout << (*pnumber)++ << endl; // What would happen if you omit the parentheses?
cout << number1 << number2 << endl;
return 0;
}