-
-
Auto Pointer
What is auto pointer ? What is the use of this ?
-
-
-
Method Overriding
What's the Method Overriding and what's the difference between Method Overloading and Method Overriding.
-
-
What is virtual class and friend class?
Friend classes are used when two or more classes are designed to work together and need access to each other's implementation in ways that the rest of the world shouldn't be allowed to have. In other words, they help keep private things private. For instance, it may be desirable for class DatabaseCursor to have more privilege to the internals of class Database than main() has.
-
-
-
-
C++ palindrome Code
How to check the string in one file is palindrome or not? Print how many strings in that file are palindrome?
-
Polymorphism
What are the issue one should care implementing polymorphism.
-
Dangers of public unsigned, diamond-shaped inheritance
What is the danger of using public unsigned integers within a class?In a diamond-shaped inheritance hierarchy, how to ensure that only 1 copy of parent is created?
-
Macro and Inline function
What is the difference between macro and inline function?
-
Connect C++ to MS Access
How to connect C++ to MS Access?
-
-
-
-
What is the diffrence between static_cast and dynamic_cast in RTTI
dynamic_cast checks for datatype at runtime but static_cast checks at compilation. Is this the only diffrence b/w them or is there anything else? at the time of programming which shud we prefer to call.
-
C++ Interview Questions
Ans