C++ Pointers & Functions Question: Download C++ Pointers & Functions PDF

What is the output of this program?

#include <iostream>
using namespace std;
void mani()
void mani()
{
cout<<"hai";
}
int main()
{
mani();
return 0;
}
a) hai
b) haihai
c) compile time error
d) none of the mentioned

Tweet Share WhatsApp