+ 1
C language is an object oriented programming.what exactly object oriented programming is in laymen's as well as in technical terms?
need examples too...
3 Antworten
+ 9
Someone can correct me if Im wrong but Object-oriented pretty much means that it literally references an object, C does this but not in the same way, C is an indirect approach and somewhat a work around., mainly because it's an old language and isn't advanced like C++ and C#.
+ 7
C doesn't have OOP. C++ and C# do.
I don't want to get into too many details, but with OOP, you can define classes which serve as blueprints to create objects. Classes have attributes (variables representing the state of the object) and methods (functions to manipulate the object).
0
zen answered well!!