https://github.com/brenofariasdasilva/c
My C Language Codes.
https://github.com/brenofariasdasilva/c
algorithms algorithms-and-data-structures c cpp deitel-exercises
Last synced: about 1 month ago
JSON representation
My C Language Codes.
- Host: GitHub
- URL: https://github.com/brenofariasdasilva/c
- Owner: BrenoFariasdaSilva
- License: apache-2.0
- Created: 2020-08-15T13:55:47.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-29T17:40:28.000Z (over 2 years ago)
- Last Synced: 2025-01-23T12:28:42.547Z (over 1 year ago)
- Topics: algorithms, algorithms-and-data-structures, c, cpp, deitel-exercises
- Language: C
- Homepage:
- Size: 274 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# [C Language.](https://github.com/BrenoFariasdaSilva/C)
---
Inside this repository you will find lots of solved exercises from the book named "C-How-To-Code, Deitel". It shows my progress in self-learning C language.
---





## Table of Contents
- [C Language. ](#c-language-)
- [Table of Contents](#table-of-contents)
- [Installation](#installation)
- [C](#c)
- [Linux:](#linux)
- [Windows:](#windows)
- [Contributing](#contributing)
- [License](#license)
## Installation
### C
#### Linux:
If you are using **linux**, just open the terminal and run the following command:
```bash
$ sudo apt install build-essential
```
It will require your computer password, as well as a message asking for you to confirm the package installation.
If you are using VisualStudio, install the following extensions and then you are ready to code in C/C++
```bash
C/C++
C/C+ Compile Run
Code Runner
```
#### Windows:
If you are using **Windows**, just open [MinGW website](http://mingw-w64.org/doku.php/download) and download the version for your system. MinGW contains all the GCC Package you need.
After installing MinGW, open it and select to install the following packages:
```bash
minggw32-base-bin
minggw32-gcc-g++-bin
```
After, open Windows File Manager, go to MinGW installation folder and open "bin" folder. Copy the folder adress and type "path" on Windows Search Bar. Open it and click on "Environment Variables" then, on System Variables, click on "Path" and then click on "New" and paste the adress of MinGW bin folder. After that, restart your Computer.
If you are using VisualStudio, install the following extensions and then you are ready to code in C/C++
```bash
C/C++
C/C+ Compile Run
Code Runner
```
## Contributing
Contributions are what make the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**. If you have suggestions for improving the code, your insights will be highly welcome.
In order to contribute to this project, please follow the guidelines below or read the [CONTRIBUTING.md](CONTRIBUTING.md) file for more details on how to contribute to this project, as it contains information about the commit standards and the entire pull request process.
Please follow these guidelines to make your contributions smooth and effective:
1. **Set Up Your Environment**: Ensure you've followed the setup instructions in the [Setup](#setup) section to prepare your development environment.
2. **Make Your Changes**:
- **Create a Branch**: `git checkout -b feature/YourFeatureName`
- **Implement Your Changes**: Make sure to test your changes thoroughly.
- **Commit Your Changes**: Use clear commit messages, for example:
- For new features: `git commit -m "FEAT: Add some AmazingFeature"`
- For bug fixes: `git commit -m "FIX: Resolve Issue #123"`
- For documentation: `git commit -m "DOCS: Update README with new instructions"`
- For refactorings: `git commit -m "REFACTOR: Enhance component for better aspect"`
- For snapshots: `git commit -m "SNAPSHOT: Temporary commit to save the current state for later reference"`
- See more about crafting commit messages in the [CONTRIBUTING.md](CONTRIBUTING.md) file.
3. **Submit Your Contribution**:
- **Push Your Changes**: `git push origin feature/YourFeatureName`
- **Open a Pull Request (PR)**: Navigate to the repository on GitHub and open a PR with a detailed description of your changes.
4. **Stay Engaged**: Respond to any feedback from the project maintainers and make necessary adjustments to your PR.
5. **Celebrate**: Once your PR is merged, celebrate your contribution to the project!
## License
[MIT](https://choosealicense.com/licenses/mit/)