What is the output of this program?
#include
using namespace std;
int main()
{
int const p = 5;
cout << ++p;
return 0;
}
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option C
Explanation :
We cannot modify a constant integer value.
Be The First To Comment