Which function cannot be overloaded c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What is the difference between the functions memmove() and memcpy()?

0 Answers  


Write a program to concatenate two strings.

0 Answers  


Where and why do I have to put the "template" and "typename" keywords?

0 Answers  


Which is best ide for c++?

0 Answers  


Write a corrected statement in c++ so that the statement will work properly. x + y=z;

2 Answers  






Can member functions be private?

0 Answers  


Does c++ have arraylist?

0 Answers  


Show the declaration for a pointer to function returning long and taking an integer parameter.

0 Answers  


What does it mean to declare a member variable as static?

0 Answers  


What does std mean in c++?

0 Answers  


Can non-public members of another instance of the class be retrieved by the method of the same class?

0 Answers  


class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected

3 Answers   Quark,


Categories