
What is the output of the following program ?
#include <iostream>
using namespace std;

int main(){
    int  const  p = 5;
    cout << ++p;
    return 0;
}
Options
5
6
Error
Garbage



Error
