Will a C compiler always compile C++ code

a) Yes

b) No

c) Only optimized compilers


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

Post New Answer

More C++ General Interview Questions

What is an action class?

1 Answers  


Generally variables are stored in heap memory. When he variables are created in stack?

4 Answers   Persistent,


class X { private: int a; protected: X(){cout<<"X constructor was called"<<endl;} ~X(){cout<<"X destructor was called"<<endl} }; Referring to the code above, which one of the following statements regarding "X" is TRUE? a) X is an abstract class. b) Only subclasses of X may create X objects. c) Instances of X cannot be created. d) X objects can only be created using the default copy constructor. e) Only friends can create instances of X objects.

2 Answers   Quark,


What is a volatile variable in c++?

2 Answers  


What are the effects after calling the delete this operator ?

0 Answers  


Is java made in c++?

0 Answers  


Differentiate between an inspector and a mutator ?

0 Answers  


What are vtable and vptr?

0 Answers  


What is c++ try block?

0 Answers  


what are the iterator and generic algorithms.

0 Answers  


What is a pure virtual function? Why is it represented as = 0...how is the internal implementation for the same

3 Answers   CTS,


Why main function is special in c++?

0 Answers  


Categories