Object Oriented Programming Object-oriented programming (OOP) is a programming paradigm based on the concept of “objects”, which can contain data and code: data in the form of fields (often known as attributes or properties), and […]
Category: Computer Science
Difference between Procedural and Object Oriented Programming
Procedural Oriented Programming Object Oriented Programming In procedural programming, program is divided into small parts called functions. Example code : #include <stdio.h>/*this function computes the absolute […]
