difference between c and c++?
Answer Posted / nagalaxmi thumma
-> C is a Procedure language where as C++ is object-oriented
language.
->C is Low Level language where as C++ is High Level Language.
->C is Top-Down Approach where as C++ is Bottom-up Approach.
->C++ accept all the feature & function of of C and its own
properties,but C doesn't accept all features & Functions of C++.
->C gives importance to the Functions and Procedures where
as C++ gives importance to the Objects.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Specify different types of decision control statements?
When to use “const” reference arguments in a function?
What are the restrictions apply to constructors and destructors?
Explain polymorphism?
Why is it called c++?
What is extern c++?
Write a program which uses Command Line Arguments
In a function declaration what does extern means?
What is null pointer and void pointer?
Explain the difference between overloading and overriding?
What return value must conversion operators have in their declaration?
Which command properly allocates memory a) char *a=new char[20]; b) char a=new char[20]; c) char a=new char(20.0);
Which software is used to run c++ program?
How static variables and local variablesare similar and dissimilar?
What is conditions when using boolean operators?