Posts

Showing posts from May 20, 2018

Object Oriented Approach | C++ Programming

Image
Object Oriented Approach | C++ Programming                 The fundamental idea behind object-oriented language is to combine both data & function that separate data into a single unit such a unit is called object. A objects function called member function provides the way to access objects data.

Procedural Oriented Approach | C++ Programming

Image
Procedural Oriented Approach | C++ Programming In procedural oriented approach programs are organized in form of subroutines. The subroutines do not let the code duplication. P.O. is suitable for medium sized software C, Pascal, FORTRAN etc. Are procedural oriented language.