-
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.
-
-
-
-
Connect C++ to MS Access
How to connect C++ to MS Access?
-
Macro and Inline function
What is the difference between macro and inline function?
-
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?
-
Polymorphism
What are the issue one should care implementing polymorphism.
-
C++ palindrome Code
How to check the string in one file is palindrome or not? Print how many strings in that file are palindrome?
-
-
-
-
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.
-
-
Method Overriding
What's the Method Overriding and what's the difference between Method Overloading and Method Overriding.
-
-
-
Auto Pointer
What is auto pointer ? What is the use of this ?
-
-
Linking socket++ classes to my application
Hi,Iam very much new to programming and C++please help meI have an application that uses socket++ classes on Unix (AIX) environmentI have included #include in two of my .cpp filesand I have socket++ source in my temp directorywhen iam trying to compile my application using the makefile, the error shown is The #include file "sockinet.h" is not found.I don't know how to make my application to use socket++...
C++ Interview Questions
Ans