what is the main difference between c and c++?
Answer Posted / vinomythili
difference between c and c++
c c++
1.procedural oriented 1.object oriented
2.top down approach 2. bottom up approach
3.developed by dennis ritche 3.developed by bjourne
stroustroup
4.malloc and free for allocation 4.new() and delete() for
and deallocation allocation and deallocatio
5.doesn't support operator and 5.it supports both
function overloading
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is a class in oop?
What is interface? When and where is it used?
c++ program to swap the objects of two different classes
Can we override main method?
Can main method override?
Why is destructor used?
What are the three main types of variables?
What is overriding in oop?
How oops is better than procedural?
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
What are the types of abstraction?
Why is encapsulation used?
Give two or more real cenario of virtual function and vertual object
What is encapsulation process?
What is polymorphism give a real life example?