Answers

Question and Answer:

  Home  C++ Pointers and Functions

⟩ 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

c) compile time error

 257 views

More Questions for you: