Can c++ be faster than c?
No Answer is Posted For this Question
Be the First to Post Answer
Can I learn c++ in a week?
What are the syntactic rules to be avoid ambiguity in multiple inheritance?
What is the difference between new/delete and malloc/free?
What is a class template in c++?
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?
Explain friend class?
What is c++ code?
How does the copy constructor differ from the assignment operator (=)?
In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest.
What is protected inheritance?
Is java the same as c++?
What is #include iostream in c++?