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++
- Host: GitHub
- URL: https://github.com/mina-atallah/oop-book-by-r.l-exercises
- Owner: mina-atallah
- Created: 2024-09-12T19:39:52.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-26T21:00:49.000Z (7 months ago)
- Last Synced: 2024-10-26T22:58:08.589Z (7 months ago)
- Topics: cplusplus, cpp, learning, learning-by-doing, learning-cplusplus, learning-cpp, learning-exercise, learning-to-code, object-oriented-programming, object-oriented-programming-in-cpp
- Language: C++
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/)