Is c++ built on c?



Is c++ built on c?..

Answer / Shashikant Paswan

C++ was designed as an extension and improvement over C. It is often referred to as a superset of the C programming language, which means that any legal C program is also a valid C++ program.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What is == in programming?

1 Answers  


What is while loops?

1 Answers  


Which function cannot be overloaded c++?

1 Answers  


What is the cout in c++?

1 Answers  


How are pointers type-cast?

1 Answers   iNautix,


What is exception handling? Does c++ support exception handling?

1 Answers  


what is meaning of isa and hsa

1 Answers  


Does there exist any other function which can be used to convert an integer or a float to a string?

1 Answers  


Consider a c++ template funtion template<class T> T& Add(T a, T b){return a+b ;} if this function is called as T c = Add("SAM", "SUNG"); what will happen? What is the problem in the template declaration/ How to solve the problem.

7 Answers   LG, Samsung,


When one must use recursion function? Mention what happens when recursion functions are declared inline?

1 Answers  


How the compilers arranges the various sections in the executable image?

1 Answers  


the maximum length of a character constant can be a) 2 b) 1 c) 8

1 Answers  


Categories