#include using namespace std; int main() { int const num = 10; cout << ++num; return 0; }
We cannot modify a constant integer value.
Previous Question Next Question
Your comments will be displayed only after manual approval.