what is the main difference between c and c++?
Answer Posted / sonu
>C is Procedure Oriented Programming Language (POP).
->C++ is Object Oriented Programming Language (OOP).
->C is mostly used to develop system software.
->C++ is mostly used to modal real life problem to program and use to develop application programs.
->C program has extension .C
->C++ program has extension .cpp
->C uses the top-down approach.
->while C++ uses the bottom-up approach.
->C is function-driven.
->while C++ is object-driven.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is encapsulation in simple terms?
Can you explain polymorphism?
write a C++ program for booking using constructor and destructor.
What is oops and its features?
What is cohesion in oop?
When not to use object oriented programming?
If a=5, b=6, c=7, b+=a%c*2. What is the final value of b?
What do you mean by abstraction?
Why do pointers exist?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
What is polymorphism explain?
What is pointer in oop?
Which language is pure oop?
How can you overcome the diamond problem in inheritance?
What is object in oop?