An open API service indexing awesome lists of open source software.

https://github.com/mina-atallah/oop-book-by-r.l-exercises

Solving object-oriented programming book in C++
https://github.com/mina-atallah/oop-book-by-r.l-exercises

cplusplus cpp learning learning-by-doing learning-cplusplus learning-cpp learning-exercise learning-to-code object-oriented-programming object-oriented-programming-in-cpp

Last synced: 6 months ago
JSON representation

Solving object-oriented programming book in C++

Awesome Lists containing this project

README

        

# Object Oriented Programming in c++ (4th Edition) by Robert Lafore
This repository contains my solutions for the exercises found in the book.

## Reason for creating this repository
As someone not from CS background i found learning programming by such a powerful language like c++ is good because it gives the student a lot of details of what is happening behind the scenes and teach them about memory management and many important concepts and details which are very important to build robust software systems. So this repository is my starting step in this journey for becoming a software engineer.

## Chapters
- [chapter 02: C++ Programming Basics ](/chap-02/)
- [chapter 03: Loops and Decisions ](/chap-03/)
- [chapter 04: Structures ](/chap-04/)
- [chapter 05: Functions ](/chap-05/)
- [chapter 06: Objects and Classes ](/chap-06/)
- [chapter 07: Arrays and Strings ](/chap-07/)