https://github.com/awaisfraaz/programming-fundamentals-
This Repository is all about fundamentals
https://github.com/awaisfraaz/programming-fundamentals-
cpp programming-fundamentals
Last synced: 6 days ago
JSON representation
This Repository is all about fundamentals
- Host: GitHub
- URL: https://github.com/awaisfraaz/programming-fundamentals-
- Owner: awaisfraaz
- Created: 2025-01-19T17:37:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-08T17:58:26.000Z (about 1 year ago)
- Last Synced: 2025-03-08T18:30:52.222Z (about 1 year ago)
- Topics: cpp, programming-fundamentals
- Language: C++
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Programming Fundamentals
This repository contains examples and explanations of various programming fundamentals in C++ including variable declaration, arrays, strings, structures, and file handling.
## Table of Contents
- [Variable Declaration](#variable-declaration)
- [Arrays](#arrays)
- [Strings](#strings)
- [Structures](#structures)
- [File Handling](#file-handling)
## Variable Declaration
In C++, variables must be declared before they can be used. A variable declaration specifies the type of the variable and its name.
```cpp
int age;
float salary;
char grade;