What will be the output of the following C++ code?
#include
using namespace std;
int main()
{
int const p = 5;
cout << ++p;
return 0;
}
Answer: C
We cannot modify a constant integer value.