Is there anything you can do in C++ that you cannot do in C?
Answer / neelam saini
No. There is nothing you can do in C++ that you cannot do in C. After all you can write a C++ compiler in C.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the benefit of encapsulation?
how can u create a doubly linked list with out using pointers?
sir i want to study the c++ course but ino what is the qualification and the study methode please reply more details in c++
Explain the static member function.
Explain about Garbage Collector?
Who discovered c++?
Why is polymorphism useful?
Give 10 points of differences between C & C++.
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
Where can I run c++ program?
Which is most difficult programming language?
What do you mean by function overriding & function overloading in c++?