An open API service indexing awesome lists of open source software.

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

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`