+ 6
Hey brothers!Explain between C and Cpp?What is important?
What is very useful?
5 Answers
+ 7
The major difference between C and C++ is that C is a procedural programming language and does not support classes and objects, while C++ is a combination of both procedural and object oriented programming language; therefore C++ can be called a hybrid language. C++ allows exception handling, and function overloading which are not possible in C.
+ 7
With C++ you can achieve more.
+ 7
C++ is object oriented language and it contains classes and templates. C has only structures.
+ 5
C++ is an improved version of C, C++ libraries contain better, safer and more intuitive functions than C libraries have, but C code is mostly valid in C++; I'd recommend you to learn both, but C++ more in depth
+ 5
Thank you,all brothers