https://github.com/codegram01/hello-c
Simple example code in C for learning
https://github.com/codegram01/hello-c
Last synced: about 1 year ago
JSON representation
Simple example code in C for learning
- Host: GitHub
- URL: https://github.com/codegram01/hello-c
- Owner: codegram01
- License: mit
- Created: 2025-01-05T15:40:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-24T12:18:34.000Z (about 1 year ago)
- Last Synced: 2025-01-31T23:57:33.138Z (about 1 year ago)
- Language: C
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello C
Simple example code in C for learning.
## Feature
- Organize sources code
- Simple build and run
- Test, unit test
## Command
All magic in Makefile, read it
### Build:
```sh
make
```
### Run:
```sh
make run
```
### Unit Test:
```sh
make [path file test]
```
Ex:
```sh
make person/person_test
```
### Clean
Clean Build
```sh
make clean
```
### Beauty code
```sh
make lint
```
## Contribue
- fork, update, merge, open issue is happy
- [Subscribe my Youtube](https://www.youtube.com/@WingramOrg)