What are the advantages of c++?


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

Post New Answer

More C++ General Interview Questions

How do pointers work?

0 Answers  


Comment on assignment operator in c++.

0 Answers  


what is data abstraction in C++?

0 Answers  


Can there be at least some solution to determine the number of arguments passed to a variable argument list function?

0 Answers  


What does h mean in maths?

0 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 is implicit conversion/coercion in c++?

1 Answers  


Differentiate between late binding and early binding.

0 Answers  


What is a friend function in c++?

0 Answers  


How would you find out if a linked-list is a cycle or not?

0 Answers  


What is pure virtual function?

0 Answers  


Describe the process of creation and destruction of a derived class object?

0 Answers  


Categories