+ 6
What is the difference between c and c++?
10 Answers
+ 19
c is procedure oriented programming language and c++ is object oriented c++ is enhanched version of c .new concepts are introduced in c++ it follows bottom up approach whereas c follows topdown approach
hope this helped uâșâș
+ 8
C is more performing and often used for system programming or embedded systems while C++ is a less performing even though it is the most performing oop language. Being that, it is mostly used for big games which needs optimizing them a lot
Both of them can be used for things they are not the best at, you can do great games with C even though OOP is a better feature for this
+ 4
@unknown, that is because you do not know how to do it, that is all :p
+ 4
thank you all đ
+ 4
1. C is a procedural language and C++ is a object oriented programming language.
2. C does not support the concepts like , inheritance,encapsulation,polymorphism etc,but C++ supports it.
3. C++ is more secure then C, because of access modifiers.
+ 3
c++ can solve real world problem very well but c cannot..The main difference between c++ and c is that c++ focuses on data rather than procedure such as data hiding and that of c is based on procedure rather than data...
+ 2
its helpful
+ 1
c++ is developed from c
+ 1
In C, data are free entities and can be manipulated by outside code. This is because C does not support information hiding. đ
In C++, Encapsulation hides the data to ensure that data structures and operators are used as intended. đ
0
c++ has two plusses than c