In the name of ALLAH, the most beneficient, the most merciful

Object Oriented Programming (CS304)

Question (select most suitable option)

  What is the output of the following code?

int main()
{
int const x = 10;
cout << ++x;
return 0;
}
10
11
Error
None of the given