https://github.com/serhatderya/cpp_practises
This repository contains practices for begginers in C++ programming.
https://github.com/serhatderya/cpp_practises
code coding cpp development practice practice-programming practice-project programming programming-exercises software software-development software-engineering
Last synced: 8 days ago
JSON representation
This repository contains practices for begginers in C++ programming.
- Host: GitHub
- URL: https://github.com/serhatderya/cpp_practises
- Owner: SerhatDerya
- Created: 2022-02-25T17:05:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-30T18:37:51.000Z (over 2 years ago)
- Last Synced: 2025-01-03T18:29:42.612Z (10 months ago)
- Topics: code, coding, cpp, development, practice, practice-programming, practice-project, programming, programming-exercises, software, software-development, software-engineering
- Language: C++
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cpp PRACTICES
This repository contains practices for begginers in C++ programming.
!!! This repository requires basic knowledge of coding (preferably C) !!!
## 1 - Hello World
Learn how to greet the programming world by printing "Hello World" on the screen.
## 2 - Introduction to C++
Basic operations in C++.
## 3 - Flow Control Constructs
Flow control constructs (switch-case, for, if-else, do-while, while, break-continue).
## 4 - Arrays
Arrays is being used for storing the values (elements) together.In short, array is collection of elements. In this part, you will be working on array-related algorithms.
## 5 - Structures
Using a structure is the best way of storing classes which has the same variables. In this part, you will be working on some structure examples.