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 |
What is == in programming?
What is while loops?
Which function cannot be overloaded c++?
What is the cout in c++?
How are pointers type-cast?
What is exception handling? Does c++ support exception handling?
what is meaning of isa and hsa
Does there exist any other function which can be used to convert an integer or a float to a string?
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.
When one must use recursion function? Mention what happens when recursion functions are declared inline?
How the compilers arranges the various sections in the executable image?
the maximum length of a character constant can be a) 2 b) 1 c) 8