https://github.com/ngugimuchangi/alx-low_level_programming
ALX low-level programming projects | C
https://github.com/ngugimuchangi/alx-low_level_programming
c dynamic-library hash-table linked-list makefile searching-algorithms static-library
Last synced: 9 months ago
JSON representation
ALX low-level programming projects | C
- Host: GitHub
- URL: https://github.com/ngugimuchangi/alx-low_level_programming
- Owner: ngugimuchangi
- Created: 2022-04-07T21:20:16.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-11-02T16:54:51.000Z (over 3 years ago)
- Last Synced: 2025-02-24T06:44:58.330Z (over 1 year ago)
- Topics: c, dynamic-library, hash-table, linked-list, makefile, searching-algorithms, static-library
- Language: C
- Homepage:
- Size: 296 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ALX Low Level Programming
## Low-level programming & Algorithm Projects
### 0x00. C - Hello, World
* Introduction to C
* [0x00-hello_world](0x00-hello_world)
### 0x01. C - Variables, if, else, while
* Loops in C
* [0x01-variables_if_else_while](0x01-variables_if_else_while)
### 0x02. C - Functions, nested loops
* C functions and nested loops
* Introduction to header files and function prototypes
* [0x02-functions_nested_loops](0x02-functions_nested_loops)
### Debugging
* Debugging principles
* [0x03-debugging](0x03-debugging)
### 0x04. C - More functions, more nested loops
* More on C functions and nested loops
* [0x04-more_functions_nested_loops](0x04-more_functions_nested_loops)
### 0x05. C - Pointers, arrays and strings
* Pointer, arrays and other data structures
* Strings and how to manipulate them
* Scope of variables
* [0x05-pointers_arrays_strings](0x05-pointers_arrays_strings)
### 0x06. C - More pointers, arrays and strings
* More on pointers, array, strings, data structure and scope of variables
* [0x06-pointers_arrays_strings](0x06-pointers_arrays_strings)
### 0x07. C - Even more pointers, arrays and strings
* More on pointers
* Double pointers (pointers to pointers)
* Multi-dimensional arrays
* [0x07-pointers_arrays_strings](0x07-pointers_arrays_strings)
### 0x08. C - Recursion
* Recursive functions
* [0x08-recursion](0x08-recursion)
### 0x09. C - Static libraries
* Static libraries
* [0x09-static_libraries](0x09-static_libraries)
### 0x0A. C - argc, argv
* Passing argument to main function
* Compiling with unusued variables
* [0x0A-argc_argv](0x0A-argc_argv)
### 0x0B. C - malloc, free
* Automatic and dynamic memory allocation
* [0x0B-malloc_free](0x0B-malloc_free)
### 0x0C. C - More malloc, free
* More on dynamic memory allocation
* [0x0C-more_malloc_free](0x0C-more_malloc_free)
### 0x0D. C - Preprocessor
* Preprocessor
* [0x0D-preprocessor](0x0D-preprocessor)
### 0x0E. C - Structures, typedef
* Structs and defining custom data type names
* [0x0E-structures_typedef](0x0E-structures_typedef)
### 0x0F. C - Function pointers
* Pointers to functions
* [0x0F-function_pointers](0x0F-function_pointers)
### 0x10. C - Variadic functions
* Function with many arguments
* [0x10-variadic_functions](0x10-variadic_functions)
### 0x12. C - Singly linked lists
* Data structures: singly linked lists
* [0x12-singly_linked_lists](0x12-singly_linked_lists)
### 0x13. C - More singly linked lists
* More on singly linked list
* [0x13-more_singly_linked_lists](0x13-more_singly_linked_lists)
### 0x14. C - Bit manipulation
* Bitwise operators
* [0x14-bit_manipulation](0x14-bit_manipulation)
### 0x15. C - File I/O
* File input / output operations
* [0x15-file_io](0x15-file_io)
### 0x17. C - Doubly linked lists
* Data structures: doubly linked lists
* [0x17-doubly_linked_lists](0x17-doubly_linked_lists)
### 0x18. C - Dynamic libraries
* Dynamic libraries
* [0x18-dynamic_libraries](0x18-dynamic_libraries)
### 0x1A. C - Hash tables
* Data structures: hash tables
* [0x1A-hash_tables](0x1A-hash_tables)
### 0x1C. C - Makefiles
* Automation using makefiles
* [0x1C-makefiles](0x1C-makefiles)
### 0x1E. C - Search Algorithms
* Search algorithms
* [0x1E-search_algorithms](0x1E-search_algorithms)