Q&A
Ask and answer questions to make information more available to wider audiences.
Skyler Alcock @alcockskyler   07, Apr 2023 12:00 AM
the difference between C and C++
What is the difference between C and C++?
answers 4
 
Answer 1
Gunner Birdson @birdsongunner   08, Apr 2023 09:22 AM
C is a function-driven language.
C++ is an object-driven language.
 
Answer 2
Sadie Lynton @lyntonsadie   08, Apr 2023 09:19 AM
C does not support Function and Operator Overloading.
C++ supports Function and Operator Overloading respectively.
 
Answer 3
Kendall Lynn @lynnkendall9   08, Apr 2023 09:15 AM
does not support any OOPs concepts like polymorphism, data abstraction, encapsulation, classes, and objects.
C++ supports all concepts of data.
 
Answer 4
Jett Deane @deanejett   08, Apr 2023 09:11 AM
C is a procedural programming language. In simple words, it does not support classes and objects.
C++ is a mixture of both procedural and object-oriented programming languages. In simple words, it supports classes and objects.