C++ Pointers & Functions Question:
Download Questions PDF

Which of the following is used to terminate the function declaration?
a) :
b) )
c) ;
d) none of the mentioned

C++ Pointers & Functions Interview Question
C++ Pointers & Functions Interview Question

Answer:

c) ;

Download C++ Pointers & Functions Interview Questions And Answers PDF

Previous QuestionNext Question
Can 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