alx-low_level_programming

所属分类:数据结构
开发工具:C
文件大小:0KB
下载次数:0
上传日期:2023-07-09 22:52:00
上 传 者sh-1993
说明:  C编程存储库,用于ALX低级编程学习
(C programming repository, for the ALX low level programming learnings)

文件列表:
0x00-hello_world/ (0, 2023-10-14)
0x00-hello_world/.5-printf.c.swo (12288, 2023-10-14)
0x00-hello_world/.5-printf.c.swp (12288, 2023-10-14)
0x00-hello_world/.6-size.c.swo (12288, 2023-10-14)
0x00-hello_world/.6-size.c.swp (12288, 2023-10-14)
0x00-hello_world/0-preprocessor (27, 2023-10-14)
0x00-hello_world/1-compiler (26, 2023-10-14)
0x00-hello_world/100-intel (134, 2023-10-14)
0x00-hello_world/101-quote.c (203, 2023-10-14)
0x00-hello_world/2-assembler (225, 2023-10-14)
0x00-hello_world/3-name (116, 2023-10-14)
0x00-hello_world/4-del.c (0, 2023-10-14)
0x00-hello_world/4-latest.c (0, 2023-10-14)
0x00-hello_world/4-new.c (0, 2023-10-14)
0x00-hello_world/4-print.c (0, 2023-10-14)
0x00-hello_world/4-puts.c (297, 2023-10-14)
0x00-hello_world/5-printf.c (219, 2023-10-14)
0x00-hello_world/6-size.c (547, 2023-10-14)
0x01-variables_if_else_while/ (0, 2023-10-14)
0x01-variables_if_else_while/.0-positive_or_negative.c.swp (12288, 2023-10-14)
0x01-variables_if_else_while/0-positive_or_negative.c (328, 2023-10-14)
0x01-variables_if_else_while/1-last_digit.c (564, 2023-10-14)
0x01-variables_if_else_while/100-print_comb3.c (334, 2023-10-14)
0x01-variables_if_else_while/101-print_comb4.c (388, 2023-10-14)
0x01-variables_if_else_while/102-print_comb5.c (419, 2023-10-14)
0x01-variables_if_else_while/2-print_alphabet.c (221, 2023-10-14)
0x01-variables_if_else_while/3-print_alphabets.c (289, 2023-10-14)
0x01-variables_if_else_while/4-print_alphabt.c (270, 2023-10-14)
0x01-variables_if_else_while/5-print_numbers.c (242, 2023-10-14)
0x01-variables_if_else_while/6-print_numberz.c (258, 2023-10-14)
0x01-variables_if_else_while/7-print_tebahpla.c (234, 2023-10-14)
0x01-variables_if_else_while/8-print_base16.c (289, 2023-10-14)
0x01-variables_if_else_while/9-print_comb.c (261, 2023-10-14)
0x02-functions_nested_loops/ (0, 2023-10-14)
0x02-functions_nested_loops/0-putchar.c (249, 2023-10-14)
0x02-functions_nested_loops/1-alphabet.c (199, 2023-10-14)
0x02-functions_nested_loops/10-add.c (218, 2023-10-14)
0x02-functions_nested_loops/100-times_table.c (852, 2023-10-14)
... ...

## My ALX Low-Level Programming in C This repository contains a collection of my C programming learnings as part of my journey at ALX AFRICA. Each directory represents a specific topic or concept I have learned in the program. The following is a brief explanation of each topic: ## Topics Covered - [0x00: Hello World in C](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x00-hello_world/): Introduction to the C programming language which covers the basics of writing a simple "Hello, World!" program. - [0x01: Variables, if & else, while loop](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x01-variables_if_else_while/): Exploration of variables, conditional statements (if & else), and looping constructs (while loop) in C. - [0x03: Debugging](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x03-debugging/): Introduction to debugging techniques in C programming, including the use of debugging tools and strategies for finding and fixing errors in code. - [0x04: More on Functions & Nested Loop](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x04-more_functions_nested_loops/): In-depth coverage of functions and nested loops in C programming, including function definition, invocation, and usage of nested loops for iterative tasks. - [0x05, 0x06, 0x07: Pointers, Arrays & Strings](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x05-pointers_arrays_strings): Understanding pointers, arrays, and strings in C programming. Topics include pointer arithmetic, array declaration, string manipulation, and memory allocation. Check the three directories covering these topics. - [0x08: Recursion](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x08-recursion/): Exploration of recursive function calls in C programming, covering the concept of recursion and its applications in solving problems. - [0x09: Static Libraries](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x09-static_libraries/): Understanding static libraries in C programming. Topics include library creation, linking, and usage in different projects. - [0x0A: argc argv](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x0A-argc_argv/): Explanation of the `argc` and `argv` parameters in the `main` function and their usage for command-line argument processing in C programming. - [0x0B, 0x0C: malloc free](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x0B-malloc_free/): In-depth coverage of dynamic memory allocation in C programming using `malloc` and `free` functions. Topics include memory allocation, deallocation, and memory management. - [0x0D: Preprocessor](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x0D-preprocessor/): Introduction to the C preprocessor and its role in code compilation. Covers preprocessor directives, macro definitions, and conditional compilation. - [0x0E: Structures, typedef](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x0E-structures_typedef/): Understanding structures and the `typedef` keyword in C programming. Topics include structure declaration, member access, and type definitions for enhanced readability. - [0x0F: Function Pointers](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x0F-function_pointers/): Exploration of function pointers in C programming, covering the concept of storing and using pointers to functions. - [0x10: Variadic Functions](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x10-variadic_functions/): Understanding variadic functions in C programming, which can accept a variable number of arguments. Covers the use of the `va_list` type and related macros. - [0x13: More on Singly Linked Lists](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x13-more_singly_linked_lists/): In-depth coverage of singly linked lists in C programming. Topics include list creation, traversal, insertion, deletion, and memory management. - [0x14: Bit Manipulation](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x14-bit_manipulation/): Exploration of bit manipulation techniques in C programming, including bitwise operators and their applications for efficient coding. - [0x15: File I/O](https://github.com/Aishat452/alx-low_level_programming/blob/master/./0x15-file_io/): Understanding file input/output operations in C programming. Topics include file handling, reading from and writing to files, and error handling. ## Author ### Aishat Adeladun Adewoyin I created this repository to serve as a record of my ALX Low-Level Programming experience. Feel free to explore my directories to learn more about each topic I have learned so far. All the best!

近期下载者

相关文件


收藏者