What is the basic difference between C and C++?


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

Post New Answer

More C++ General Interview Questions

Can we use clrscr in c++?

0 Answers  


What do you mean by late binding?

0 Answers  


class Foo { public: Foo(int i) { } }; class Bar : virtual Foo { public: Bar() { } }; Bar b; Referring to the above code, when the object 'b' is defined, a compiler error will occur. What action fixes the compiler error? a) Adding a virtual destructor to the class Bar b) Adding a constructor to Bar which takes an int parameter c) Adding "Foo()" to the Bar constructor d) Adding a copy constructor to the class Foo e) Adding "Foo(0)" to the Bar::Bar initializer list

2 Answers   Quark,


Can the creation of operator** is allowed to perform the to-the-power-of operations?

0 Answers  


What is an undefined behavior and sequence points

0 Answers  






What is cout flush?

0 Answers  


What do you mean by inheritance in c++?

0 Answers  


Is linux written in c or c++?

0 Answers  


What is the difference between method overloading and method overriding in c++?

0 Answers  


The "virtual" specifier in a member function enables which one of the following? a) Monmorphism b) Late binding c) Metamorphism d) Solomorphism e) Inheritance

4 Answers   Quark,


What is a stack c++?

0 Answers  


What is the use of main function in c++?

0 Answers  


Categories