https://github.com/inputsh/learning-cpp
This is a repository with examples from https://developers.google.com/edu/c++/
https://github.com/inputsh/learning-cpp
Last synced: 9 months ago
JSON representation
This is a repository with examples from https://developers.google.com/edu/c++/
- Host: GitHub
- URL: https://github.com/inputsh/learning-cpp
- Owner: inputsh
- License: gpl-2.0
- Created: 2014-12-19T13:22:12.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-19T14:50:58.000Z (over 11 years ago)
- Last Synced: 2025-02-15T14:30:59.970Z (over 1 year ago)
- Language: C++
- Size: 160 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Learning C++
============
I just started learning C++ so I decided to create a repository that will be mine go-to place for learning C++. I'm going to be putting all of my source code in this repository, plus links to some referencing materials that I found on the Internet.
If you're a starter like me, you're welcome to use this repository in any way you like.
## Current list of projects (by the creation order)
* **helloworld** - A Hello World program.
* **helloworld2** - Hello World in a 4x6 grid.
* **get_input** - A simple program with input.
* **mup_board** - Print multiplication board.
* **guessing_game** - A simple "guess the number" game.
* **eucl_alg** - An implementation of [Euclidean Algorithm](https://en.wikipedia.org/wiki/Euclidean_algorithm)
## Reference materials
* [Google for Education: C++ Course](https://developers.google.com/edu/c++/)