C++ Pointers & Functions Question: Which of the following is used to terminate the function declaration? a) : b) ) c) ; d) none of the mentioned C++ Pointers & Functions Interview QuestionAnswer: c) ; Previous QuestionNext QuestionCan you please explain the difference between Pointer to constant and pointer constant?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