-
-
-
-
What is the difference between structures and classes in C++?
There is only one difference ,in classes the members are private by default whereas it is not so in structures.
-
C Double dimensional arrays
How can double dimensional arrays be dynamically initialized in C ?
-
-
What is namespace?
Namespaces allow us to group a set of global classes, objects and/or functions under a name. To say it somehow, they serve to split the global scope in sub-scopes known as namespaces. The form to use namespaces is: namespace identifier { namespace-body }Where identifier is any valid identifier and namespace-body is the set of classes, objects and functions that are included...
-
-
-
Virtual key word
can access any private member of the base class through the derived class FUNCTION IF IT IS VIRTUAL?
-
-
OBJECT and INSTANCE
What Is The Difference Between Object and Instance?
-
C++ Default Function
What are the four functions that compiler automatically provides? How can you prevent compiler to provide automatically?
-
Modular Structered and OOPS
Compare Modular Structered Programming and Object Oriented Programming
-
-
-
-
-
-
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