Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamhrigved/learn-c
Learning the legendary C Programming language 😄
https://github.com/iamhrigved/learn-c
c-programming-language learn-c
Last synced: about 1 month ago
JSON representation
Learning the legendary C Programming language 😄
- Host: GitHub
- URL: https://github.com/iamhrigved/learn-c
- Owner: iamhrigved
- Created: 2024-06-26T06:11:26.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-09-26T02:57:36.000Z (about 2 months ago)
- Last Synced: 2024-09-30T01:05:34.412Z (about 2 months ago)
- Topics: c-programming-language, learn-c
- Language: C
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learn the C programming language with me 😄
#### This repo contains all of the code that I have been writing to learn C
- Every bit of code here, is inspired by the K&R book, which I have been using to learn C.
- Every file in this repo is independent of all the other files.
- The files are arranged chapter-wise for better clarity.
- I will be adding more as I learn.
## Installation
```bash
git clone https://github.com/iamhrigved/learn-c.git ~/learn-c
cd ~/learn-c
source runc.sh
```Note: It is recommended to source the `runc.sh` file and use its `runc` function to generate binaries.
#### Example
```bash
cd ~/learn-c/chapter-01
runc ./counting1.c # will generate the binary `chapter-01/executables/counting1` and run it
```OR
```bash
cd ~/learn-c
runc ./chapter-05/my_sort.c # will generate the binary `chapter-05/executables/my_sort` and run it
```#### Start leaning! 😉