What is the difference between C and C++?
C and C++ are both programming languages. C is a procedural programming language whereas C++ is an object oriented programming language. There were certain drawbacks in the C language. That is why, C++ was developed.
Hello,
C
C was developed by Dennis Ritchie between the year 1969 and 1973 at AT&T Bell Labs
Virtual and friend functions are not supported by C
Functions in C are not defined inside structures
C contains 32 keywords
C structures donot have access modifiers
Reference variables are not supported by C
C++
C++ was developed by Bjarne Stroustrup in 1979
C++ supports polymorphism encapsulation and inheritance because it is an object oriented programming language
C++ contains 63 keywords
C ++ structures have access modifiers
Thankyou.