what is the main difference between c and c++?
Answers were Sorted based on User's Feedback
Answer / raghav ji
the main deference between c and c++ is that c is a
procedural language having no security while c++ is the
object oreanted programing language having more security
power and concepts like
1. bottom up approach
2. classes
3. objects
4. overload
5. inheritens etc...
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / krishnendu dey
1.C doesn't support function overloading but c++ does
2.c++ has a features of NAMESPACE which C doesn't have.
3.In C++ we can use function inside structure whereas C
doesn't permit this.
4 c- function driven
C++- object driven
5. C uses top down approach
C++ uses bottom down aproach
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / g.santhoshini
In c there is a limit for length of identifier should not
preceeded more than 8 characters where as in c++ there is no
limit for length of identifiers.
and in c the file is saved with the extension .c ,in c++ the
file extension is .cpp.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / solaimuthu manikandan
1. C follows the procedural programming paradigm while C++
is a multi-paradigm language(procedural as well as object
oriented)
In case of C, importance is given to the steps or
procedure of the program while C++ focuses on the data
rather than the process.
Also, it is easier to implement/edit the code in case of
C++ for the same reason.
2. In case of C, the data is not secured while the data is
secured(hidden) in C++
This difference is due to specific OOP features like
Data Hiding which are not present in C.
3. C++ supports function overloading while C does not
4. We can use functions inside structures in C++ but not in
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / m.mohanraj
The main difference between c&c++ is the c++ is only advanced version of c.so these two programming language contains some difference only.In the c++ we are using object oriented technique.But in the c the object oriented technique is not there.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sagar dubey
in C++ language we are having the properties of encapsulation,polymorphism,data abstraction and inheritance which is not in the language C..
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sathish kumar
c does not support oops concept like
inheretence,polymorphism,binding.....etc
c++ support oops concept.....
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nizam
c is not powerful language and c++ is powerful language
| Is This Answer Correct ? | 0 Yes | 0 No |
what i oops concept, how many languages supports oops concept?
What is polymorphism in oops with example?
What is function overloading and operator overloading?
Hi All, I am new to programming and want to know how can i write a code to take input of 2 numbers from user and swap it without using a temp variable?
What are the benefits of polymorphism?
why we are declare the function in the abstract class even though we are declaring it in Derived class?
What is solid in oops?
WRITE A SIMPLE C++ PROGRAM TO SWAP TWO NOS WITHOUT USING TEMP
what is opps?why it is use in programming language?
What is a friend function & its advantage?
what is overloading
What is the importance of oop?