A
Q. What is the output of this program?
Code:
#include
using namespace std;
int main()
{
int const num = 10;
cout << ++num;
return 0;
}
using namespace std;
int main()
{
int const num = 10;
cout << ++num;
return 0;
}
- Correct Answer - Option(C)
- Views: 24
- Filed under category C++
- Hashtags:
Discusssion
Login to discuss.