Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codewithsegnet/alx-low_level_programming
Writing scripts that runs a C file through the preprocessor.
https://github.com/codewithsegnet/alx-low_level_programming
c shell
Last synced: 3 days ago
JSON representation
Writing scripts that runs a C file through the preprocessor.
- Host: GitHub
- URL: https://github.com/codewithsegnet/alx-low_level_programming
- Owner: CodewithSegNet
- Created: 2022-09-08T21:26:38.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-02-26T00:37:00.000Z (over 1 year ago)
- Last Synced: 2023-03-26T01:42:03.639Z (over 1 year ago)
- Topics: c, shell
- Language: C
- Homepage:
- Size: 255 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![img](https://assets.imaginablefutures.com/media/images/ALX_Logo.max-200x150.png)
# C is FUN 😊
>Learning C right now, been wanting to get on this. It's going to be FUN !!.
## About
- This repository consists of all the C programming projects done with [ALX Software Engineering Program](https://www.alxafrica.com/) Full stack course in partnership with [Holberton School](https://www.holbertonschool.com/) by [Segnet](https://https://github.com/CodewithSegNet/).
- All main.c files are prewritten by the school. We build functions that produce a specific output while also taking into consideration edge case's---
- C is fun but its not that easy, so I have some [notes](./notes.md) that will actually show you the journey and thought process.
## Resource
- C [Books and PDF's](./references) to check out and use as a
---
### Hatching out
- [0x00](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x00-hello_world). C - Hello, World
- [0x01](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x01-variables_if_else_while). C - Variables, if, else, while
- [0x02](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x02-functions_nested_loops). C - Functions, nested loops
- [0x03](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x03-debugging). C - Debugging
- [0x04](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x04-more_functions_nested_loops). C - More functions, more nested loops
- [0x05](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x05-pointers_arrays_strings). C - Pointers, arrays and strings
- [0x06](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x06-pointers_arrays_strings). C - More pointers, arrays and strings
- [0x07](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x07-pointers_arrays_strings). C - Even more pointers, arrays and strings
- [0x08](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x08-recursion). C - Recursion
- [0x09](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x09-static_libraries). C - Static libraries
- [0x0A](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x0A-argc_argv). C - argc, argv
- [0x0B](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x0B-malloc_free). C - malloc, free
- [0x0C](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x0C-more_malloc_free). C - More malloc, free
- [0x0D](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x0D-preprocessor). C - Preprocessor
- [0x0E](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x0E-structures_typedef). C - Structures, typedef
- [0x0F](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x0F-function_pointers). C - Function pointers
- [0x10](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x10-variadic_functions). C - Variadic functions
- [0x11](https://github.com/CodewithSegNet/printf). C - printf
- [0x14](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x14-bit_manipulation). C - Bit manipulation
- [0x18](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x18-dynamic_libraries). C - Dynamic libraries
- [0x1C](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x1C-makefiles). C - Makefiles### Data structures and Algorithms
- [0x12](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x12-singly_linked_lists). C - Singly linked lists
- [0x13](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x13-more_singly_linked_lists). C - More singly linked lists
- [0x17](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x17-doubly_linked_lists). C - Doubly linked lists### Linux and Unix system programming
- [0x15](https://github.com/CodewithSegNet/Alx-low_level_programming/tree/master/0x15-file_io). C - File I/O
- [0x16](https://github.com/CodewithSegNet/simple_shell/). C - Simple Shell---
# More Resources
- [Pointers and Arrays](./PointerArrays) : Code snippets and notes on Pointers and Arrays from Concept Page.
- [Data Structures](./DataStructures) : Code snippets and notes on data structures.
- [Dynamic Memory Allocation](./dynamic_memory_alloc) : Code snippets and notes on how dynamic memory allocation works with `malloc` and `free`.
- [Heap vs Stack](./heap_stack) : Code snippets and notes on what is a heap, a stack and how they work.
- [Simple Shell Concepts](./simple_shell_concepts) : Code snippets and notes on the concept for the simple shell project. Low Level Programming