Q. What is the output of the following C++ code?
Code:
#include <iostream>
using namespace std;
void display()
void display()
{
cout << "Hello World!";
}
int main()
{
display();
return 0;
}
β
Correct Answer: (C)
Compilation error.