+ 3
What is the difference between c and c++
4 Answers
+ 7
C++ is an advanced form of C .
C is not a object oriented programming language .
But C++ support s object oriented programming.
C codes also run in C++ compilers..đ
+ 5
They both are mostly same in some areas but C++ have some additional features.
Like C language does not support classes because it is Procedure Oriented Programming(POP) language.
In POP language everything is managed by functions.
While C++ has support to classes and in it data is managed by objects
0
long story short,
c - no OOP
c++ - has OOP
this difference is why c++ is more favoured than c.
0
C and C++ both are slightly same
C is not a object oriented language
But C++ is object oriented language
C does not supported classes
C++ supported classes