Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/farinap5/learning-c
My collection of C programming examples.
https://github.com/farinap5/learning-c
c learn-to-code learning learning-by-doing programming
Last synced: about 1 month ago
JSON representation
My collection of C programming examples.
- Host: GitHub
- URL: https://github.com/farinap5/learning-c
- Owner: farinap5
- License: mit
- Created: 2021-03-17T14:45:12.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-29T00:28:35.000Z (6 months ago)
- Last Synced: 2024-06-29T01:36:41.152Z (6 months ago)
- Topics: c, learn-to-code, learning, learning-by-doing, programming
- Language: C
- Homepage:
- Size: 56.6 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Learning-C
This repository contains my collection of simple C programming examples, made to help to learn the C programming language as well as the creation of algorithms.
The idea is that all the codes are simple to understand because they have comments explaining line by line. Small codes and beginner friendly.
All programs should be easily campiled and run on Linux based machines, as not tested on Windows shouldn't fail though.
Feel free to open a pull request to fix any issues or include any new code.
---
### Compile and RunSimple compilation.
#### CLang
> clang-7 -pthread -lm -o outputfile file.c
#### GCC
> gcc file.c -o outputfile
Kernel Linux
> ./outputfile
Or
> gcc file.c && ./a.out
Windows
> \> outputfile