Why are pointers not used in c++?
What is the difference between a constructor and a destructor in C++?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
What is the full form of ios?
What is the difference between const and constexpr?
can anybody please tell me how to write a program in c++,without using semicolon(;)
Which bit wise operator is suitable for checking whether a particular bit is on or off?
class professor {}; class teacher : public virtual professor {}; class researcher : public virtual professor {}; class myprofessor : public teacher, public researcher {}; Referring to the sample code above, if an object of class "myprofessor" were created, how many instances of professor will it contain? a) 0 b) 1 c) 2 d) 3 e) 4
What is cloning?
what is the difference between overloading & overriding? give example.
What are c++ tokens?
Explain container class.
What is the word you will use when defining a function in base class to allow this function to be a polimorphic function?