+ 3
What is main difference between c & c++ ?
c++
6 Answers
+ 3
c is not object oriented
+ 21
operater and function overloading are not possible in c but in CPP
C is middle level language CPP is high level
c programs are divided into modules and procedures where as CPP programs has functions and Classes
+ 13
C is a procedural language whereas C++ is object oriented..hence also called C with classes.
+ 5
******************(C vs C++)*******************
C
1) it was studied in 1st year.
2) it is just C.
3) it was taught by Vivek Prakash Sahu Sir.
C++
1) it was studied in 2nd year.
2) it is not just C. it is C++ with ++ post increment operator.
3) it was taught by Prem Chandrakar Sir.
************************************************
+ 1
C is structural, imperative language that close to architecture of computer.
C++ is C language that has object oriented features.
Oop features are polymorhpism, inheritance and encapsulation.
C# and Java are pure object-oriented language. They have syntax like c language.