https://github.com/itsgitz/c-lab
This is my lab for building software with the C programming language, just like I did in vocational high school, but now in advanced mode for the modern programming world 🔥.
https://github.com/itsgitz/c-lab
Last synced: about 2 months ago
JSON representation
This is my lab for building software with the C programming language, just like I did in vocational high school, but now in advanced mode for the modern programming world 🔥.
- Host: GitHub
- URL: https://github.com/itsgitz/c-lab
- Owner: itsgitz
- License: mit
- Created: 2025-10-27T15:10:57.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-11-06T22:27:13.000Z (9 months ago)
- Last Synced: 2025-11-07T00:13:59.459Z (9 months ago)
- Language: C
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# My C Lab
This is my lab for building software with the C programming language, just like I did in vocational high school, but now in advanced mode for the modern programming world. I've decided to learn C again because, in this era of AI, I believe web developers might be replaced by AI in the next 3 to 5 years. With C, I aim to connect more deeply with hardware.
## Setup for Windows
1. Install [WinLibs MinGW-w64](https://winlibs.com/)
2. Set environment variable:
```bash
setx MINGW_HOME "C:\mingw64"
```
## Getting Started
1. Clone the repository:
```bash
git clone https://github.com/itsgitz/c-lab.git
```
2. Change directory to the `getting-started` folder:
```bash
cd getting-started
```
3. Compile and run the program:
```bash
gcc hello.c -o hello.exe
hello.exe
```
## License
[MIT](./LICENSE)