├── 0x00-hello_world ├── 0-preprocessor ├── 1-compiler ├── 100-intel ├── 101-quote.c ├── 2-assembler ├── 3-name ├── 4-puts.c ├── 5-printf.c ├── 6-size.c └── README.md ├── 0x01-variables_if_else_while ├── 0-positive_or_negative.c ├── 1-last_digit.c ├── 100-print_comb3.c ├── 101-print_comb4.c ├── 102-print_comb5.c ├── 2-print_alphabet.c ├── 3-print_alphabets.c ├── 4-print_alphabt.c ├── 5-print_numbers.c ├── 6-print_numberz.c ├── 7-print_tebahpla.c ├── 8-print_base16.c ├── 9-print_comb.c ├── README.md └── compiled-files │ ├── 0-positive_or_negative │ ├── 1-last_digit │ ├── 100-print_comb3 │ ├── 101-print_comb4 │ ├── 102-print_comb5 │ ├── 2-print_alphabet │ ├── 3-print_alphabets │ ├── 4-print_alphabt │ ├── 5-print_numbers │ ├── 6-print_numberz │ ├── 7-print_tebahpla │ ├── 8-print_base16 │ └── 9-print_comb ├── 0x02-functions_nested_loops ├── 0-putchar.c ├── 1-alphabet.c ├── 10-add.c ├── 100-times_table.c ├── 101-natural.c ├── 102-fibonacci.c ├── 103-fibonacci.c ├── 104-fibonacci.c ├── 11-print_to_98.c ├── 2-print_alphabet_x10.c ├── 3-islower.c ├── 4-isalpha.c ├── 5-sign.c ├── 6-abs.c ├── 7-print_last_digit.c ├── 8-24_hours.c ├── 9-times_table.c ├── README.md ├── _putchar.c └── main.h ├── 0x03-debugging ├── 0-main.c ├── 1-main.c ├── 2-largest_number.c ├── 3-print_remaining_days.c ├── README.md └── main.h ├── 0x04-more_functions_nested_loops ├── 0-isupper.c ├── 1-isdigit.c ├── 10-print_triangle.c ├── 100-prime_factor ├── 100-prime_factor.c ├── 101-print_number.c ├── 2-mul.c ├── 3-print_numbers.c ├── 4-print_most_numbers.c ├── 5-more_numbers.c ├── 6-print_line.c ├── 7-print_diagonal.c ├── 8-print_square.c ├── 9-fizz_buzz.c ├── README.md └── main.h ├── 0x05-pointers_arrays_strings ├── 0-reset_to_98.c ├── 1-swap.c ├── 100-atoi.c ├── 2-strlen.c ├── 3-puts.c ├── 4-print_rev.c ├── 5-rev_string.c ├── 6-puts2.c ├── 7-puts_half.c ├── 8-print_array.c ├── 9-strcpy.c ├── README.md ├── _putchar.c ├── compiled_files │ ├── 0-98 │ ├── 1-swap │ ├── 100-atoi │ ├── 2-strlen │ ├── 3-puts │ ├── 4-print_rev │ ├── 5-rev_string │ ├── 6-puts2 │ ├── 7-puts_half │ ├── 8-print_array │ └── 9-strcpy ├── main.h └── main_files │ ├── 0-main.c │ ├── 1-main.c │ ├── 100-main.c │ ├── 2-main.c │ ├── 3-main.c │ ├── 4-main.c │ ├── 5-main.c │ ├── 6-main.c │ ├── 7-main.c │ ├── 8-main.c │ └── 9-main.c ├── 0x06-pointers_arrays_strings ├── 0-strcat.c ├── 1-strncat.c ├── 100-rot13.c ├── 101-print_number.c ├── 102-magic.c ├── 103-infinite_add.c ├── 104-print_buffer.c ├── 2-strncpy.c ├── 3-strcmp.c ├── 4-rev_array.c ├── 5-string_toupper.c ├── 6-cap_string.c ├── 7-leet.c ├── README.md ├── _putchar.c ├── compiled-files │ ├── 0-strcat │ ├── 1-strncat │ ├── 100-rot13 │ ├── 101-print_numbers │ ├── 103-add │ ├── 104-buffer │ ├── 2-strncpy │ ├── 3-strcmp │ ├── 4-rev_array │ ├── 5-string_toupper │ ├── 6-cap │ └── 7-1337 ├── main-files │ ├── 0-main.c │ ├── 1-main.c │ ├── 100-main.c │ ├── 101-main.c │ ├── 103-main.c │ ├── 104-main.c │ ├── 2-main.c │ ├── 3-main.c │ ├── 4-main.c │ ├── 5-main.c │ ├── 6-main.c │ └── 7-main.c └── main.h ├── 0x07-pointers_arrays_strings ├── 0-memset.c ├── 1-memcpy.c ├── 100-set_string.c ├── 2-strchr.c ├── 3-strspn.c ├── 4-strpbrk.c ├── 5-strstr.c ├── 7-print_chessboard.c ├── 8-print_diagsums.c ├── README.md ├── _putchar.c ├── compiled-files │ ├── 0-memset │ ├── 1-memcpy │ ├── 100-set_string │ ├── 2-strchr │ ├── 3-strspn │ ├── 4-strpbrk │ ├── 5-strstr │ ├── 7-print_chessboard │ └── 8-print_diagsums ├── main.h └── test-files │ ├── 0-main.c │ ├── 1-main.c │ ├── 100-main.c │ ├── 2-main.c │ ├── 3-main.c │ ├── 4-main.c │ ├── 5-main.c │ ├── 7-main.c │ └── 8-main.c ├── 0x08-recursion ├── 0-puts_recursion.c ├── 1-print_rev_recursion.c ├── 100-is_palindrome.c ├── 101-wildcmp.c ├── 2-strlen_recursion.c ├── 3-factorial.c ├── 4-pow_recursion.c ├── 5-sqrt_recursion.c ├── 6-is_prime_number.c ├── README.md ├── _putchar.c ├── compiled-files │ ├── 0-puts_recursion │ ├── 1-print_rev_recursion │ ├── 100-palindrome │ ├── 101-wildcmp │ ├── 2-strlen_recursion │ ├── 3-factorial │ ├── 4-pow │ ├── 5-sqrt │ └── 6-prime ├── main.h └── test-files │ ├── 0-main.c │ ├── 1-main.c │ ├── 100-main.c │ ├── 101-main.c │ ├── 2-main.c │ ├── 3-main.c │ ├── 4-main.c │ ├── 5-main.c │ └── 6-main.c ├── 0x09-static_libraries ├── README.md ├── c-files │ ├── 0-isupper.c │ ├── 0-memset.c │ ├── 0-strcat.c │ ├── 1-isdigit.c │ ├── 1-memcpy.c │ ├── 1-strncat.c │ ├── 100-atoi.c │ ├── 2-strchr.c │ ├── 2-strlen.c │ ├── 2-strncpy.c │ ├── 3-islower.c │ ├── 3-puts.c │ ├── 3-strcmp.c │ ├── 3-strspn.c │ ├── 4-isalpha.c │ ├── 4-strpbrk.c │ ├── 5-strstr.c │ ├── 6-abs.c │ ├── 9-strcpy.c │ ├── _putchar.c │ └── main.c ├── create_static_lib.sh ├── liball.a ├── libmy.a ├── main.h ├── obj-files │ ├── 0-isupper.o │ ├── 0-memset.o │ ├── 0-strcat.o │ ├── 1-isdigit.o │ ├── 1-memcpy.o │ ├── 1-strncat.o │ ├── 100-atoi.o │ ├── 2-strchr.o │ ├── 2-strlen.o │ ├── 2-strncpy.o │ ├── 3-islower.o │ ├── 3-puts.o │ ├── 3-strcmp.o │ ├── 3-strspn.o │ ├── 4-isalpha.o │ ├── 4-strpbrk.o │ ├── 5-strstr.o │ ├── 6-abs.o │ ├── 9-strcpy.o │ ├── _putchar.o │ └── main.o └── quote ├── 0x0A-argc_argv ├── 0-whatsmyname.c ├── 1-args.c ├── 100-change.c ├── 2-args.c ├── 3-mul.c ├── 4-add.c ├── README.md └── compiled-files │ ├── add │ ├── args │ ├── change │ ├── mul │ ├── mynameis │ └── nargs ├── 0x0B-malloc_free ├── 0-create_array.c ├── 1-strdup.c ├── 100-argstostr.c ├── 101-strtow.c ├── 2-str_concat.c ├── 3-alloc_grid.c ├── 4-free_grid.c ├── README.md ├── compiled-files │ ├── a │ ├── args │ ├── c │ ├── f │ ├── g │ ├── s │ └── strtow ├── main.h └── test-files │ ├── 0-main.c │ ├── 1-main.c │ ├── 100-main.c │ ├── 101-main.c │ ├── 2-main.c │ ├── 3-main.c │ └── 4-main.c ├── 0x0C-more_malloc_free ├── 0-malloc_checked.c ├── 1-string_nconcat.c ├── 100-realloc.c ├── 101-mul.c ├── 2-calloc.c ├── 3-array_range.c ├── README.md ├── _putchar.c ├── compiled_files │ ├── 1-string_nconcat │ ├── 100-realloc │ ├── 101-mul │ ├── 2-calloc │ ├── 3-array_range │ └── a ├── main.h └── test-files │ ├── 0-main.c │ ├── 1-main.c │ ├── 100-main.c │ ├── 2-main.c │ └── 3-main.c ├── 0x0D-preprocessor ├── 0-object_like_macro.h ├── 1-pi.h ├── 2-main.c ├── 3-function_like_macro.h ├── 4-sum.h ├── README.md ├── compiled-files │ ├── a │ ├── b │ ├── c │ ├── cc │ ├── d │ └── e └── test-files │ ├── 0-main.c │ ├── 02-main.c │ ├── 1-main.c │ ├── 3-main.c │ └── 4-main.c ├── 0x0E-structures_typedef ├── 1-init_dog.c ├── 2-print_dog.c ├── 4-new_dog.c ├── 5-free_dog.c ├── README.md ├── compiled-files │ ├── a │ ├── b │ ├── c │ ├── d │ ├── e │ └── f ├── dog.h └── test-files │ ├── 0-main.c │ ├── 1-main.c │ ├── 2-main.c │ ├── 3-main.c │ ├── 4-main.c │ └── 5-main.c ├── 0x0F-function_pointers ├── 0-print_name.c ├── 1-array_iterator.c ├── 100-main_opcodes.c ├── 2-int_index.c ├── 3-calc.h ├── 3-get_op_func.c ├── 3-main.c ├── 3-op_functions.c ├── README.md ├── compiled-files │ ├── a │ ├── b │ ├── c │ ├── calc │ └── main ├── function_pointers.h └── test-files │ ├── 0-main.c │ ├── 1-main.c │ └── 2-main.c ├── 0x10-variadic_functions ├── 0-sum_them_all.c ├── 1-print_numbers.c ├── 2-print_strings.c ├── 3-print_all.c ├── README.md ├── compiled-files │ ├── a │ ├── b │ ├── c │ └── d ├── test-files │ ├── 0-main.c │ ├── 1-main.c │ ├── 2-main.c │ └── 3-main.c └── variadic_functions.h ├── 0x12-singly_linked_lists ├── 0-print_list.c ├── 1-list_len.c ├── 100-first.c ├── 101-hello_holberton.asm ├── 2-add_node.c ├── 3-add_node_end.c ├── 4-free_list.c ├── README.md ├── compiled-files │ ├── a │ ├── b │ ├── c │ ├── d │ ├── e │ ├── first │ └── hello ├── lists.h └── test-files │ ├── 0-main.c │ ├── 1-main.c │ ├── 100-main.c │ ├── 101-hello_holberton.o │ ├── 2-main.c │ ├── 3-main.c │ └── 4-main.c └── README.md /0x00-hello_world/0-preprocessor: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -E $CFILE -o c 3 | -------------------------------------------------------------------------------- /0x00-hello_world/1-compiler: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -c $CFILE 3 | -------------------------------------------------------------------------------- /0x00-hello_world/100-intel: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -S -masm=intel $CFILE 3 | -------------------------------------------------------------------------------- /0x00-hello_world/101-quote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x00-hello_world/101-quote.c -------------------------------------------------------------------------------- /0x00-hello_world/2-assembler: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc $CFILE -S 3 | -------------------------------------------------------------------------------- /0x00-hello_world/3-name: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc $CFILE -o cisfun 3 | -------------------------------------------------------------------------------- /0x00-hello_world/4-puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x00-hello_world/4-puts.c -------------------------------------------------------------------------------- /0x00-hello_world/5-printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x00-hello_world/5-printf.c -------------------------------------------------------------------------------- /0x00-hello_world/6-size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x00-hello_world/6-size.c -------------------------------------------------------------------------------- /0x00-hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x00-hello_world/README.md -------------------------------------------------------------------------------- /0x01-variables_if_else_while/0-positive_or_negative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/0-positive_or_negative.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/1-last_digit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/1-last_digit.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/100-print_comb3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/100-print_comb3.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/101-print_comb4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/101-print_comb4.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/102-print_comb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/102-print_comb5.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/2-print_alphabet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/2-print_alphabet.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/3-print_alphabets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/3-print_alphabets.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/4-print_alphabt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/4-print_alphabt.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/5-print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/5-print_numbers.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/6-print_numberz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/6-print_numberz.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/7-print_tebahpla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/7-print_tebahpla.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/8-print_base16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/8-print_base16.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/9-print_comb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/9-print_comb.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/README.md -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/0-positive_or_negative: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/0-positive_or_negative -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/1-last_digit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/1-last_digit -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/100-print_comb3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/100-print_comb3 -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/101-print_comb4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/101-print_comb4 -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/102-print_comb5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/102-print_comb5 -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/2-print_alphabet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/2-print_alphabet -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/3-print_alphabets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/3-print_alphabets -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/4-print_alphabt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/4-print_alphabt -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/5-print_numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/5-print_numbers -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/6-print_numberz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/6-print_numberz -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/7-print_tebahpla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/7-print_tebahpla -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/8-print_base16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/8-print_base16 -------------------------------------------------------------------------------- /0x01-variables_if_else_while/compiled-files/9-print_comb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x01-variables_if_else_while/compiled-files/9-print_comb -------------------------------------------------------------------------------- /0x02-functions_nested_loops/0-putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/0-putchar.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/1-alphabet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/1-alphabet.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/10-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/10-add.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/100-times_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/100-times_table.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/101-natural.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/101-natural.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/102-fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/102-fibonacci.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/103-fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/103-fibonacci.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/104-fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/104-fibonacci.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/11-print_to_98.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/11-print_to_98.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/2-print_alphabet_x10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/2-print_alphabet_x10.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/3-islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/3-islower.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/4-isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/4-isalpha.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/5-sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/5-sign.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/6-abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/6-abs.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/7-print_last_digit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/7-print_last_digit.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/8-24_hours.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/8-24_hours.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/9-times_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/9-times_table.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/README.md -------------------------------------------------------------------------------- /0x02-functions_nested_loops/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/_putchar.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x02-functions_nested_loops/main.h -------------------------------------------------------------------------------- /0x03-debugging/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x03-debugging/0-main.c -------------------------------------------------------------------------------- /0x03-debugging/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x03-debugging/1-main.c -------------------------------------------------------------------------------- /0x03-debugging/2-largest_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x03-debugging/2-largest_number.c -------------------------------------------------------------------------------- /0x03-debugging/3-print_remaining_days.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x03-debugging/3-print_remaining_days.c -------------------------------------------------------------------------------- /0x03-debugging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x03-debugging/README.md -------------------------------------------------------------------------------- /0x03-debugging/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x03-debugging/main.h -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/0-isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/0-isupper.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/1-isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/1-isdigit.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/10-print_triangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/10-print_triangle.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/100-prime_factor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/100-prime_factor -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/100-prime_factor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/100-prime_factor.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/101-print_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/101-print_number.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/2-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/2-mul.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/3-print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/3-print_numbers.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/4-print_most_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/4-print_most_numbers.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/5-more_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/5-more_numbers.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/6-print_line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/6-print_line.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/7-print_diagonal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/7-print_diagonal.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/8-print_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/8-print_square.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/9-fizz_buzz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/9-fizz_buzz.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/README.md -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/main.h -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/0-reset_to_98.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/0-reset_to_98.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/1-swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/1-swap.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/100-atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/100-atoi.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/2-strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/2-strlen.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/3-puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/3-puts.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/4-print_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/4-print_rev.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/5-rev_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/5-rev_string.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/6-puts2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/6-puts2.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/7-puts_half.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/7-puts_half.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/8-print_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/8-print_array.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/9-strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/9-strcpy.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/README.md -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/_putchar.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/compiled_files/0-98: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/compiled_files/0-98 -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/compiled_files/1-swap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/compiled_files/1-swap -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/compiled_files/100-atoi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/compiled_files/100-atoi -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/compiled_files/2-strlen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/compiled_files/2-strlen -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/compiled_files/3-puts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/compiled_files/3-puts -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/compiled_files/4-print_rev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/compiled_files/4-print_rev -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/compiled_files/5-rev_string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/compiled_files/5-rev_string -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/compiled_files/6-puts2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/compiled_files/6-puts2 -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/compiled_files/7-puts_half: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/compiled_files/7-puts_half -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/compiled_files/8-print_array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/compiled_files/8-print_array -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/compiled_files/9-strcpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/compiled_files/9-strcpy -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main.h -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main_files/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main_files/0-main.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main_files/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main_files/1-main.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main_files/100-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main_files/100-main.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main_files/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main_files/2-main.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main_files/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main_files/3-main.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main_files/4-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main_files/4-main.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main_files/5-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main_files/5-main.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main_files/6-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main_files/6-main.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main_files/7-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main_files/7-main.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main_files/8-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main_files/8-main.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main_files/9-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main_files/9-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/0-strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/0-strcat.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/1-strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/1-strncat.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/100-rot13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/100-rot13.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/101-print_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/101-print_number.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/102-magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/102-magic.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/103-infinite_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/103-infinite_add.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/104-print_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/104-print_buffer.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/2-strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/2-strncpy.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/3-strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/3-strcmp.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/4-rev_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/4-rev_array.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/5-string_toupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/5-string_toupper.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/6-cap_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/6-cap_string.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/7-leet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/7-leet.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/README.md -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/_putchar.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/0-strcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/0-strcat -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/1-strncat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/1-strncat -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/100-rot13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/100-rot13 -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/101-print_numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/101-print_numbers -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/103-add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/103-add -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/104-buffer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/104-buffer -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/2-strncpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/2-strncpy -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/3-strcmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/3-strcmp -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/4-rev_array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/4-rev_array -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/5-string_toupper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/5-string_toupper -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/6-cap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/6-cap -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/compiled-files/7-1337: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/compiled-files/7-1337 -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/0-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/1-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/100-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/100-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/101-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/101-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/103-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/103-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/104-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/104-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/2-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/3-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/4-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/4-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/5-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/5-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/6-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/6-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main-files/7-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main-files/7-main.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main.h -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/0-memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/0-memset.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/1-memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/1-memcpy.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/100-set_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/100-set_string.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/2-strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/2-strchr.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/3-strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/3-strspn.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/4-strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/4-strpbrk.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/5-strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/5-strstr.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/7-print_chessboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/7-print_chessboard.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/8-print_diagsums.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/8-print_diagsums.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/README.md -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/_putchar.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/compiled-files/0-memset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/compiled-files/0-memset -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/compiled-files/1-memcpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/compiled-files/1-memcpy -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/compiled-files/100-set_string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/compiled-files/100-set_string -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/compiled-files/2-strchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/compiled-files/2-strchr -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/compiled-files/3-strspn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/compiled-files/3-strspn -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/compiled-files/4-strpbrk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/compiled-files/4-strpbrk -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/compiled-files/5-strstr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/compiled-files/5-strstr -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/compiled-files/7-print_chessboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/compiled-files/7-print_chessboard -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/compiled-files/8-print_diagsums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/compiled-files/8-print_diagsums -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/main.h -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/test-files/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/test-files/0-main.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/test-files/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/test-files/1-main.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/test-files/100-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/test-files/100-main.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/test-files/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/test-files/2-main.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/test-files/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/test-files/3-main.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/test-files/4-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/test-files/4-main.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/test-files/5-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/test-files/5-main.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/test-files/7-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/test-files/7-main.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/test-files/8-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/test-files/8-main.c -------------------------------------------------------------------------------- /0x08-recursion/0-puts_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/0-puts_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/1-print_rev_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/1-print_rev_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/100-is_palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/100-is_palindrome.c -------------------------------------------------------------------------------- /0x08-recursion/101-wildcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/101-wildcmp.c -------------------------------------------------------------------------------- /0x08-recursion/2-strlen_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/2-strlen_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/3-factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/3-factorial.c -------------------------------------------------------------------------------- /0x08-recursion/4-pow_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/4-pow_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/5-sqrt_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/5-sqrt_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/6-is_prime_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/6-is_prime_number.c -------------------------------------------------------------------------------- /0x08-recursion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/README.md -------------------------------------------------------------------------------- /0x08-recursion/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/_putchar.c -------------------------------------------------------------------------------- /0x08-recursion/compiled-files/0-puts_recursion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/compiled-files/0-puts_recursion -------------------------------------------------------------------------------- /0x08-recursion/compiled-files/1-print_rev_recursion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/compiled-files/1-print_rev_recursion -------------------------------------------------------------------------------- /0x08-recursion/compiled-files/100-palindrome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/compiled-files/100-palindrome -------------------------------------------------------------------------------- /0x08-recursion/compiled-files/101-wildcmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/compiled-files/101-wildcmp -------------------------------------------------------------------------------- /0x08-recursion/compiled-files/2-strlen_recursion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/compiled-files/2-strlen_recursion -------------------------------------------------------------------------------- /0x08-recursion/compiled-files/3-factorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/compiled-files/3-factorial -------------------------------------------------------------------------------- /0x08-recursion/compiled-files/4-pow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/compiled-files/4-pow -------------------------------------------------------------------------------- /0x08-recursion/compiled-files/5-sqrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/compiled-files/5-sqrt -------------------------------------------------------------------------------- /0x08-recursion/compiled-files/6-prime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/compiled-files/6-prime -------------------------------------------------------------------------------- /0x08-recursion/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/main.h -------------------------------------------------------------------------------- /0x08-recursion/test-files/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/test-files/0-main.c -------------------------------------------------------------------------------- /0x08-recursion/test-files/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/test-files/1-main.c -------------------------------------------------------------------------------- /0x08-recursion/test-files/100-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/test-files/100-main.c -------------------------------------------------------------------------------- /0x08-recursion/test-files/101-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/test-files/101-main.c -------------------------------------------------------------------------------- /0x08-recursion/test-files/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/test-files/2-main.c -------------------------------------------------------------------------------- /0x08-recursion/test-files/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/test-files/3-main.c -------------------------------------------------------------------------------- /0x08-recursion/test-files/4-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/test-files/4-main.c -------------------------------------------------------------------------------- /0x08-recursion/test-files/5-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/test-files/5-main.c -------------------------------------------------------------------------------- /0x08-recursion/test-files/6-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x08-recursion/test-files/6-main.c -------------------------------------------------------------------------------- /0x09-static_libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/README.md -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/0-isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/0-isupper.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/0-memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/0-memset.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/0-strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/0-strcat.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/1-isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/1-isdigit.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/1-memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/1-memcpy.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/1-strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/1-strncat.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/100-atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/100-atoi.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/2-strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/2-strchr.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/2-strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/2-strlen.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/2-strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/2-strncpy.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/3-islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/3-islower.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/3-puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/3-puts.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/3-strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/3-strcmp.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/3-strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/3-strspn.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/4-isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/4-isalpha.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/4-strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/4-strpbrk.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/5-strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/5-strstr.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/6-abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/6-abs.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/9-strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/9-strcpy.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/_putchar.c -------------------------------------------------------------------------------- /0x09-static_libraries/c-files/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/c-files/main.c -------------------------------------------------------------------------------- /0x09-static_libraries/create_static_lib.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -c *.c 3 | ar rc liball.a *.o 4 | -------------------------------------------------------------------------------- /0x09-static_libraries/liball.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/liball.a -------------------------------------------------------------------------------- /0x09-static_libraries/libmy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/libmy.a -------------------------------------------------------------------------------- /0x09-static_libraries/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/main.h -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/0-isupper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/0-isupper.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/0-memset.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/0-memset.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/0-strcat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/0-strcat.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/1-isdigit.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/1-isdigit.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/1-memcpy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/1-memcpy.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/1-strncat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/1-strncat.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/100-atoi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/100-atoi.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/2-strchr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/2-strchr.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/2-strlen.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/2-strlen.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/2-strncpy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/2-strncpy.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/3-islower.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/3-islower.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/3-puts.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/3-puts.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/3-strcmp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/3-strcmp.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/3-strspn.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/3-strspn.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/4-isalpha.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/4-isalpha.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/4-strpbrk.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/4-strpbrk.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/5-strstr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/5-strstr.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/6-abs.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/6-abs.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/9-strcpy.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/9-strcpy.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/_putchar.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/_putchar.o -------------------------------------------------------------------------------- /0x09-static_libraries/obj-files/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/obj-files/main.o -------------------------------------------------------------------------------- /0x09-static_libraries/quote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x09-static_libraries/quote -------------------------------------------------------------------------------- /0x0A-argc_argv/0-whatsmyname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/0-whatsmyname.c -------------------------------------------------------------------------------- /0x0A-argc_argv/1-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/1-args.c -------------------------------------------------------------------------------- /0x0A-argc_argv/100-change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/100-change.c -------------------------------------------------------------------------------- /0x0A-argc_argv/2-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/2-args.c -------------------------------------------------------------------------------- /0x0A-argc_argv/3-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/3-mul.c -------------------------------------------------------------------------------- /0x0A-argc_argv/4-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/4-add.c -------------------------------------------------------------------------------- /0x0A-argc_argv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/README.md -------------------------------------------------------------------------------- /0x0A-argc_argv/compiled-files/add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/compiled-files/add -------------------------------------------------------------------------------- /0x0A-argc_argv/compiled-files/args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/compiled-files/args -------------------------------------------------------------------------------- /0x0A-argc_argv/compiled-files/change: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/compiled-files/change -------------------------------------------------------------------------------- /0x0A-argc_argv/compiled-files/mul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/compiled-files/mul -------------------------------------------------------------------------------- /0x0A-argc_argv/compiled-files/mynameis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/compiled-files/mynameis -------------------------------------------------------------------------------- /0x0A-argc_argv/compiled-files/nargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0A-argc_argv/compiled-files/nargs -------------------------------------------------------------------------------- /0x0B-malloc_free/0-create_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/0-create_array.c -------------------------------------------------------------------------------- /0x0B-malloc_free/1-strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/1-strdup.c -------------------------------------------------------------------------------- /0x0B-malloc_free/100-argstostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/100-argstostr.c -------------------------------------------------------------------------------- /0x0B-malloc_free/101-strtow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/101-strtow.c -------------------------------------------------------------------------------- /0x0B-malloc_free/2-str_concat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/2-str_concat.c -------------------------------------------------------------------------------- /0x0B-malloc_free/3-alloc_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/3-alloc_grid.c -------------------------------------------------------------------------------- /0x0B-malloc_free/4-free_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/4-free_grid.c -------------------------------------------------------------------------------- /0x0B-malloc_free/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/README.md -------------------------------------------------------------------------------- /0x0B-malloc_free/compiled-files/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/compiled-files/a -------------------------------------------------------------------------------- /0x0B-malloc_free/compiled-files/args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/compiled-files/args -------------------------------------------------------------------------------- /0x0B-malloc_free/compiled-files/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/compiled-files/c -------------------------------------------------------------------------------- /0x0B-malloc_free/compiled-files/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/compiled-files/f -------------------------------------------------------------------------------- /0x0B-malloc_free/compiled-files/g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/compiled-files/g -------------------------------------------------------------------------------- /0x0B-malloc_free/compiled-files/s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/compiled-files/s -------------------------------------------------------------------------------- /0x0B-malloc_free/compiled-files/strtow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/compiled-files/strtow -------------------------------------------------------------------------------- /0x0B-malloc_free/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/main.h -------------------------------------------------------------------------------- /0x0B-malloc_free/test-files/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/test-files/0-main.c -------------------------------------------------------------------------------- /0x0B-malloc_free/test-files/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/test-files/1-main.c -------------------------------------------------------------------------------- /0x0B-malloc_free/test-files/100-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/test-files/100-main.c -------------------------------------------------------------------------------- /0x0B-malloc_free/test-files/101-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/test-files/101-main.c -------------------------------------------------------------------------------- /0x0B-malloc_free/test-files/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/test-files/2-main.c -------------------------------------------------------------------------------- /0x0B-malloc_free/test-files/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/test-files/3-main.c -------------------------------------------------------------------------------- /0x0B-malloc_free/test-files/4-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0B-malloc_free/test-files/4-main.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/0-malloc_checked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/0-malloc_checked.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/1-string_nconcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/1-string_nconcat.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/100-realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/100-realloc.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/101-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/101-mul.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/2-calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/2-calloc.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/3-array_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/3-array_range.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/README.md -------------------------------------------------------------------------------- /0x0C-more_malloc_free/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/_putchar.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/compiled_files/1-string_nconcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/compiled_files/1-string_nconcat -------------------------------------------------------------------------------- /0x0C-more_malloc_free/compiled_files/100-realloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/compiled_files/100-realloc -------------------------------------------------------------------------------- /0x0C-more_malloc_free/compiled_files/101-mul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/compiled_files/101-mul -------------------------------------------------------------------------------- /0x0C-more_malloc_free/compiled_files/2-calloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/compiled_files/2-calloc -------------------------------------------------------------------------------- /0x0C-more_malloc_free/compiled_files/3-array_range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/compiled_files/3-array_range -------------------------------------------------------------------------------- /0x0C-more_malloc_free/compiled_files/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/compiled_files/a -------------------------------------------------------------------------------- /0x0C-more_malloc_free/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/main.h -------------------------------------------------------------------------------- /0x0C-more_malloc_free/test-files/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/test-files/0-main.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/test-files/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/test-files/1-main.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/test-files/100-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/test-files/100-main.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/test-files/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/test-files/2-main.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/test-files/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0C-more_malloc_free/test-files/3-main.c -------------------------------------------------------------------------------- /0x0D-preprocessor/0-object_like_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/0-object_like_macro.h -------------------------------------------------------------------------------- /0x0D-preprocessor/1-pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/1-pi.h -------------------------------------------------------------------------------- /0x0D-preprocessor/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/2-main.c -------------------------------------------------------------------------------- /0x0D-preprocessor/3-function_like_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/3-function_like_macro.h -------------------------------------------------------------------------------- /0x0D-preprocessor/4-sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/4-sum.h -------------------------------------------------------------------------------- /0x0D-preprocessor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/README.md -------------------------------------------------------------------------------- /0x0D-preprocessor/compiled-files/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/compiled-files/a -------------------------------------------------------------------------------- /0x0D-preprocessor/compiled-files/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/compiled-files/b -------------------------------------------------------------------------------- /0x0D-preprocessor/compiled-files/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/compiled-files/c -------------------------------------------------------------------------------- /0x0D-preprocessor/compiled-files/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/compiled-files/cc -------------------------------------------------------------------------------- /0x0D-preprocessor/compiled-files/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/compiled-files/d -------------------------------------------------------------------------------- /0x0D-preprocessor/compiled-files/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/compiled-files/e -------------------------------------------------------------------------------- /0x0D-preprocessor/test-files/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/test-files/0-main.c -------------------------------------------------------------------------------- /0x0D-preprocessor/test-files/02-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/test-files/02-main.c -------------------------------------------------------------------------------- /0x0D-preprocessor/test-files/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/test-files/1-main.c -------------------------------------------------------------------------------- /0x0D-preprocessor/test-files/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/test-files/3-main.c -------------------------------------------------------------------------------- /0x0D-preprocessor/test-files/4-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0D-preprocessor/test-files/4-main.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/1-init_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/1-init_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/2-print_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/2-print_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/4-new_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/4-new_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/5-free_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/5-free_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/README.md -------------------------------------------------------------------------------- /0x0E-structures_typedef/compiled-files/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/compiled-files/a -------------------------------------------------------------------------------- /0x0E-structures_typedef/compiled-files/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/compiled-files/b -------------------------------------------------------------------------------- /0x0E-structures_typedef/compiled-files/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/compiled-files/c -------------------------------------------------------------------------------- /0x0E-structures_typedef/compiled-files/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/compiled-files/d -------------------------------------------------------------------------------- /0x0E-structures_typedef/compiled-files/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/compiled-files/e -------------------------------------------------------------------------------- /0x0E-structures_typedef/compiled-files/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/compiled-files/f -------------------------------------------------------------------------------- /0x0E-structures_typedef/dog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/dog.h -------------------------------------------------------------------------------- /0x0E-structures_typedef/test-files/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/test-files/0-main.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/test-files/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/test-files/1-main.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/test-files/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/test-files/2-main.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/test-files/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/test-files/3-main.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/test-files/4-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/test-files/4-main.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/test-files/5-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0E-structures_typedef/test-files/5-main.c -------------------------------------------------------------------------------- /0x0F-function_pointers/0-print_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/0-print_name.c -------------------------------------------------------------------------------- /0x0F-function_pointers/1-array_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/1-array_iterator.c -------------------------------------------------------------------------------- /0x0F-function_pointers/100-main_opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/100-main_opcodes.c -------------------------------------------------------------------------------- /0x0F-function_pointers/2-int_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/2-int_index.c -------------------------------------------------------------------------------- /0x0F-function_pointers/3-calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/3-calc.h -------------------------------------------------------------------------------- /0x0F-function_pointers/3-get_op_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/3-get_op_func.c -------------------------------------------------------------------------------- /0x0F-function_pointers/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/3-main.c -------------------------------------------------------------------------------- /0x0F-function_pointers/3-op_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/3-op_functions.c -------------------------------------------------------------------------------- /0x0F-function_pointers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/README.md -------------------------------------------------------------------------------- /0x0F-function_pointers/compiled-files/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/compiled-files/a -------------------------------------------------------------------------------- /0x0F-function_pointers/compiled-files/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/compiled-files/b -------------------------------------------------------------------------------- /0x0F-function_pointers/compiled-files/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/compiled-files/c -------------------------------------------------------------------------------- /0x0F-function_pointers/compiled-files/calc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/compiled-files/calc -------------------------------------------------------------------------------- /0x0F-function_pointers/compiled-files/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/compiled-files/main -------------------------------------------------------------------------------- /0x0F-function_pointers/function_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/function_pointers.h -------------------------------------------------------------------------------- /0x0F-function_pointers/test-files/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/test-files/0-main.c -------------------------------------------------------------------------------- /0x0F-function_pointers/test-files/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/test-files/1-main.c -------------------------------------------------------------------------------- /0x0F-function_pointers/test-files/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x0F-function_pointers/test-files/2-main.c -------------------------------------------------------------------------------- /0x10-variadic_functions/0-sum_them_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/0-sum_them_all.c -------------------------------------------------------------------------------- /0x10-variadic_functions/1-print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/1-print_numbers.c -------------------------------------------------------------------------------- /0x10-variadic_functions/2-print_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/2-print_strings.c -------------------------------------------------------------------------------- /0x10-variadic_functions/3-print_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/3-print_all.c -------------------------------------------------------------------------------- /0x10-variadic_functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/README.md -------------------------------------------------------------------------------- /0x10-variadic_functions/compiled-files/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/compiled-files/a -------------------------------------------------------------------------------- /0x10-variadic_functions/compiled-files/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/compiled-files/b -------------------------------------------------------------------------------- /0x10-variadic_functions/compiled-files/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/compiled-files/c -------------------------------------------------------------------------------- /0x10-variadic_functions/compiled-files/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/compiled-files/d -------------------------------------------------------------------------------- /0x10-variadic_functions/test-files/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/test-files/0-main.c -------------------------------------------------------------------------------- /0x10-variadic_functions/test-files/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/test-files/1-main.c -------------------------------------------------------------------------------- /0x10-variadic_functions/test-files/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/test-files/2-main.c -------------------------------------------------------------------------------- /0x10-variadic_functions/test-files/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/test-files/3-main.c -------------------------------------------------------------------------------- /0x10-variadic_functions/variadic_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x10-variadic_functions/variadic_functions.h -------------------------------------------------------------------------------- /0x12-singly_linked_lists/0-print_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/0-print_list.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/1-list_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/1-list_len.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/100-first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/100-first.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/101-hello_holberton.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/101-hello_holberton.asm -------------------------------------------------------------------------------- /0x12-singly_linked_lists/2-add_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/2-add_node.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/3-add_node_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/3-add_node_end.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/4-free_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/4-free_list.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/README.md -------------------------------------------------------------------------------- /0x12-singly_linked_lists/compiled-files/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/compiled-files/a -------------------------------------------------------------------------------- /0x12-singly_linked_lists/compiled-files/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/compiled-files/b -------------------------------------------------------------------------------- /0x12-singly_linked_lists/compiled-files/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/compiled-files/c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/compiled-files/d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/compiled-files/d -------------------------------------------------------------------------------- /0x12-singly_linked_lists/compiled-files/e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/compiled-files/e -------------------------------------------------------------------------------- /0x12-singly_linked_lists/compiled-files/first: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/compiled-files/first -------------------------------------------------------------------------------- /0x12-singly_linked_lists/compiled-files/hello: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/compiled-files/hello -------------------------------------------------------------------------------- /0x12-singly_linked_lists/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/lists.h -------------------------------------------------------------------------------- /0x12-singly_linked_lists/test-files/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/test-files/0-main.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/test-files/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/test-files/1-main.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/test-files/100-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/test-files/100-main.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/test-files/101-hello_holberton.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/test-files/101-hello_holberton.o -------------------------------------------------------------------------------- /0x12-singly_linked_lists/test-files/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/test-files/2-main.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/test-files/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/test-files/3-main.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/test-files/4-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/0x12-singly_linked_lists/test-files/4-main.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IsraArvin/alx-low_level_programming/HEAD/README.md --------------------------------------------------------------------------------