Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.

differences between C and C++


ghost's Avatar
0 0

what are the major differences between C and C++?


clone4's Avatar
Perl-6 Wisdom Seeker
0 0

coughgoogle C vs C++cough


ghost's Avatar
0 0

Not to mention the answer is in hundreds of FAQ files. You need to realize something about these kinds of questions. Lots of people have had them before you, so you can find them if you just look.


ghost's Avatar
0 0

C programs are faster than C++ programs C++ is better for big projects because of his Object features C is best for hackers because it gives you fast and easy access to files C++ is for big projects Today Linux Kernel is writen in C But all OS's are writen in C++

i hope this help you out :) :)


ghost's Avatar
0 0

C++ is OOP while C is not. C++ is more user friendly than C is C++ is meant to be backwards compatible (Meaning a program that has C features in it will still compile) while C is not

Thanks for the correction.


mikispag's Avatar
=> Penguin in black <=
0 0

Pwnzall wrote: C++ is OOP while C is not.

This is not completely true: C++ contains some language extentions over C that make object oriented programming and generic programming more convenient. C++ does not force object oriented design anywhere. C allows for object oriented programming as well, C++ only makes it simpler.

Anyway, a google search will help you to spot more differences.