Q. What is the output of this program?
Code:
#include
using namespace std;
int main()
{
int const num = 10;
cout << ++num;
return 0;
}
β
Correct Answer: (C)
Compilation Error