Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devsubid/c-programming
Basic Programs using C-Programming
https://github.com/devsubid/c-programming
c c-basic learning learning-exercise school-assignment
Last synced: 7 days ago
JSON representation
Basic Programs using C-Programming
- Host: GitHub
- URL: https://github.com/devsubid/c-programming
- Owner: devsubid
- License: apache-2.0
- Created: 2021-10-07T15:57:33.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-12-18T13:49:08.000Z (about 2 years ago)
- Last Synced: 2024-12-22T11:44:07.124Z (12 days ago)
- Topics: c, c-basic, learning, learning-exercise, school-assignment
- Language: C
- Homepage: https://itsme-subid.github.io/C-Programming/
- Size: 459 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# C Basic Programs
The agenda of this repository is to help others and myself too.
I personally found it very useful for many times, generally I code a program but forget it very frequently, so this repository help by easy accessibility to my code and also easy to go through the programs.
## Installation GCCInstall GCC to Compile the C Programs
- Get the latest version of GCC via [tdm-gcc](https://jmeubank.github.io/tdm-gcc/), which provides up-to-date native builds of GCC, tdm-gcc, and other helpful C/C++ tools and libraries. You can download the latest installer from the tdm page or use this [link to the installer](https://jmeubank.github.io/tdm-gcc/).
- Follow the Installation instructions on the [tdm-gcc](https://jmeubank.github.io/tdm-gcc/) website to install GCC. Take care to run actual tdm-gcc executable.
## Check your GCC installation
To check that your GCC tools are correctly installed and available, open a new Command Prompt and type:```bash
g++ --version
gdb --version
```
> **Note**: If you don't see the expected output or g++ or gdb is not a recognized command. Make sure you followed the instructions on the [tdm-gcc website](https://jmeubank.github.io/tdm-gcc/) to install GCC.## Run Program
Go to the Project Directory and open `Command Prompt`
```bash
cd C:\Users\{User Name}\Documents\{Project Directory}
```Clone the project
```bash
git clone [email protected]:itsme-Subid/C-Programming.git
```Compile Program
```bash
gcc {Program Name}.c
```Run Program
```bash
a.exe
```