Is there something that we can do in C and not in C++?
Answer Posted / vaishnavi
there are many concepts that can be used in c++ where c
cannot support those concepts.
The following are some of those type of concepts:-
1.function overloading
2.operator overloading
3.templates
4.polymorphism
5.inheritence
6.data encapsulation
7.function over-riding
8.virtual functions
9.constructors & destructors
10. exceptional handling.
Is This Answer Correct ? | 4 Yes | 10 No |
Post New Answer View All Answers
What is the basic concept of c++?
Write a function that swaps the values of two integers, using int* as the argument type?
When we use Abstract Class and when we use Interface?where we will implement in real time?
Write a program which uses Command Line Arguments
What is difference between rand () and srand ()?
Why do we use using namespace std in c++?
What is meant by entry controlled loop?
What is flag in computer?
What is size of string in c++?
What is do..while loops structure?
What is a dangling pointer in c++?
What are the advantages of early binding?
How do you define/declare constants in c++?
To what does “event-driven” refer?
Why is it necessary to use a reference in the argument to the copy constructor?