Can c++ be faster than c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

What issue do auto_ptr objects address?

2 Answers  


What is a 'pure' virtual function and what's its use?

1 Answers  


What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };

2 Answers  


What are virtual functions in c++?

0 Answers  


Can I have a reference as a data member of a class? If yes, then how do I initialise it?

0 Answers  






Why iomanip is used in c++?

0 Answers  


What is a constant? Explain with an example.

0 Answers  


Which c++ compiler is best?

0 Answers  


When should we use container classes instead of arrays?

0 Answers  


Differentiate between a copy constructor and an overloaded assignment operator.

0 Answers  


What is the header file for setw?

0 Answers  


What is difference between initialization and assignment?

12 Answers   HCL, HP, Infosys,


Categories