https://github.com/thutasann/c-lang
c lang kickoff
https://github.com/thutasann/c-lang
c-lang pointers
Last synced: about 1 year ago
JSON representation
c lang kickoff
- Host: GitHub
- URL: https://github.com/thutasann/c-lang
- Owner: thutasann
- Created: 2024-09-26T17:48:41.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-09T12:27:22.000Z (over 1 year ago)
- Last Synced: 2025-06-20T14:10:04.209Z (about 1 year ago)
- Topics: c-lang, pointers
- Language: C
- Homepage:
- Size: 854 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C Progamming Language
This is the repo where I start learning `C Programming Language`.
## Topics
| Topic | Source |
| --------------- | ------------------------------------------ |
| C Basics | [Basics](./src) |
| Data Structures | [Data Structures](./src/data-structures) |
| C Examples | [C Examples](./src/c-programming-examples) |
| C Pointers | [C Pointers](./src/c-pointers) |
| Programs | [Programs](./src/programs) |
| Memory Relateds | [Programs](./src/memory-relateds) |
## Check GCC Compiler
```bash
g++ --version
```
```bash
clang --version
```
```bash
gcc --v
```
## Compile Command
```bash
gcc index.c src/*.c -o index
```
```bash
./index
```
```bash
clear && gcc index.c src/*.c -o index && ./index
```
## vsCode Snippets
- Snippets can be found at `snippet.jsonc`