├── 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 ├── 0x02-functions_nested_loops ├── ._putchar.c.swp ├── 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.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 ├── 7-print_diagonal1.c ├── 8-print_square.c ├── 9-fizz_buzz.c ├── README.md ├── _putchar.c └── main.h ├── 0x05-pointers_arrays_strings ├── 0-reset_to_98.c ├── 1-swap.c ├── 100-atoi.c ├── 101-keygen.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 └── main.h ├── 0x06-pointers_arrays_strings ├── .1-strncat.swp ├── 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 └── main.h ├── 0x07-pointers_arrays_strings ├── 0-memset.c ├── 1-memcpy.c ├── 100-set_string.c ├── 101-crackme_password ├── 2-strchr.c ├── 3-strspn.c ├── 4-strpbrk.c ├── 5-strstr.c ├── 7-print_chessboard.c ├── 8-print_diagsums.c ├── README.md ├── _putchar.c └── main.h ├── 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 └── main.h ├── 0x09-static_libraries ├── README.md ├── create_static_lib.sh ├── libmy.a └── main.h ├── 0x0A-argc_argv ├── 0-whatsmyname.c ├── 1-args.c ├── 100-change.c ├── 2-args.c ├── 3-mul.c ├── 4-add.c └── README.md ├── 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 └── main.h ├── 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 └── main.h ├── 0x0D-preprocessor ├── 0-object_like_macro.h ├── 1-pi.h ├── 2-main.c ├── 3-function_like_macro.h ├── 4-sum.h └── README.md ├── 0x0E-structures_typedef ├── 1-init_dog.c ├── 2-print_dog.c ├── 4-new_dog.c ├── 5-free_dog.c ├── README.md └── dog.h ├── 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 └── function_pointers.h ├── 0x10-variadic_functions ├── 0-sum_them_all.c ├── 1-print_numbers.c ├── 2-print_strings.c ├── 3-print_all.c ├── README.md └── 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 └── lists.h ├── 0x13-more_singly_linked_lists ├── 0-print_listint.c ├── 1-listint_len.c ├── 10-delete_nodeint.c ├── 100-reverse_listint.c ├── 101-print_listint_safe.c ├── 102-free_listint_safe.c ├── 103-find_loop.c ├── 2-add_nodeint.c ├── 3-add_nodeint_end.c ├── 4-free_listint.c ├── 5-free_listint2.c ├── 6-pop_listint.c ├── 7-get_nodeint.c ├── 8-sum_listint.c ├── 9-insert_nodeint.c ├── README.md └── lists.h ├── 0x14-bit_manipulation ├── 0-binary_to_uint.c ├── 0-main.c ├── 1-main.c ├── 1-print_binary.c ├── 100-get_endianness.c ├── 100-main.c ├── 101-password ├── 2-get_bit.c ├── 2-main.c ├── 3-set_bit.c ├── 4-clear_bit.c ├── 4-main.c ├── 5-flip_bits.c ├── 5-main.c ├── README.md ├── _putchar.c ├── a ├── b ├── c ├── crackme3 ├── f ├── h └── main.h ├── 0x15-file_io ├── 0-read_textfile.c ├── 1-create_file.c ├── 100-elf_header.c ├── 2-append_text_to_file.c ├── 3-cp.c ├── README.md └── main.h ├── 0x17-doubly_linked_lists ├── 0-print_dlistint.c ├── 1-dlistint_len.c ├── 100-password ├── 102-result ├── 103-keygen.c ├── 2-add_dnodeint.c ├── 3-add_dnodeint_end.c ├── 4-free_dlistint.c ├── 5-get_dnodeint.c ├── 6-sum_dlistint.c ├── 7-insert_dnodeint.c ├── 8-delete_dnodeint.c ├── README.md └── lists.h ├── 0x18-dynamic_libraries ├── 1-create_dynamic_lib.sh ├── 100-operations.so ├── 101-make_me_win.sh ├── README.md ├── funcs │ ├── 0-isupper.c │ ├── 0-memset.c │ ├── 0-strcat.c │ ├── 1-isdigit.c │ ├── 1-memcpy.c │ ├── 1-strncat.c │ ├── README.md │ └── _putchar.c ├── libdynamic.so ├── main.h ├── putshack.c └── putshack.so ├── 0x1A-hash_tables ├── .gitignore ├── 0-hash_table_create.c ├── 1-djb2.c ├── 100-sorted_hash_table.c ├── 2-key_index.c ├── 3-hash_table_set.c ├── 4-hash_table_get.c ├── 5-hash_table_print.c ├── 6-hash_table_delete.c ├── README.md ├── a └── hash_tables.h ├── 0x1C-makefiles ├── 0-Makefile ├── 1-Makefile ├── 100-Makefile ├── 2-Makefile ├── 3-Makefile ├── 4-Makefile ├── 5-island_perimeter.py └── README.md ├── 0x1E-search_algorithms ├── 0-linear ├── 0-linear.c ├── 0-main.c ├── 1-binary ├── 1-binary.c ├── 1-main.c ├── 100-jump.c ├── 101-O ├── 102-interpolation.c ├── 103-exponential.c ├── 104-advanced_binary.c ├── 105-jump_list.c ├── 106-linear_skip.c ├── 107-O ├── 108-O ├── 2-O ├── 3-O ├── 4-O ├── 5-O ├── 6-O ├── README.md └── search_algos.h ├── README.md └── git_session └── 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/ehoneahobed/alx-low_level_programming/HEAD/0x00-hello_world/101-quote.c -------------------------------------------------------------------------------- /0x00-hello_world/2-assembler: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gcc -S $CFILE 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/ehoneahobed/alx-low_level_programming/HEAD/0x00-hello_world/4-puts.c -------------------------------------------------------------------------------- /0x00-hello_world/5-printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x00-hello_world/5-printf.c -------------------------------------------------------------------------------- /0x00-hello_world/6-size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x00-hello_world/6-size.c -------------------------------------------------------------------------------- /0x00-hello_world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x00-hello_world/README.md -------------------------------------------------------------------------------- /0x01-variables_if_else_while/0-positive_or_negative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x01-variables_if_else_while/9-print_comb.c -------------------------------------------------------------------------------- /0x01-variables_if_else_while/README.md: -------------------------------------------------------------------------------- 1 | Tasks on variables & loops in C 2 | -------------------------------------------------------------------------------- /0x02-functions_nested_loops/._putchar.c.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/._putchar.c.swp -------------------------------------------------------------------------------- /0x02-functions_nested_loops/0-putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/0-putchar.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/1-alphabet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/1-alphabet.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/10-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/10-add.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/100-times_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/100-times_table.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/101-natural.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/101-natural.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/102-fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/102-fibonacci.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/103-fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/103-fibonacci.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/104-fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/3-islower.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/4-isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/4-isalpha.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/5-sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/5-sign.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/6-abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/9-times_table.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/README.md -------------------------------------------------------------------------------- /0x02-functions_nested_loops/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/_putchar.c -------------------------------------------------------------------------------- /0x02-functions_nested_loops/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x02-functions_nested_loops/main.h -------------------------------------------------------------------------------- /0x03-debugging/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x03-debugging/0-main.c -------------------------------------------------------------------------------- /0x03-debugging/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x03-debugging/1-main.c -------------------------------------------------------------------------------- /0x03-debugging/2-largest_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x03-debugging/2-largest_number.c -------------------------------------------------------------------------------- /0x03-debugging/3-print_remaining_days.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x03-debugging/3-print_remaining_days.c -------------------------------------------------------------------------------- /0x03-debugging/README.md: -------------------------------------------------------------------------------- 1 | Solutions to debugging tasks 2 | -------------------------------------------------------------------------------- /0x03-debugging/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x03-debugging/main.h -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/0-isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/10-print_triangle.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/100-prime_factor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/7-print_diagonal.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/7-print_diagonal1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/7-print_diagonal1.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/8-print_square.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/README.md -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x04-more_functions_nested_loops/_putchar.c -------------------------------------------------------------------------------- /0x04-more_functions_nested_loops/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/1-swap.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/100-atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/100-atoi.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/101-keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/101-keygen.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/2-strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/2-strlen.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/3-puts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/3-puts.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/4-print_rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/5-rev_string.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/6-puts2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/6-puts2.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/7-puts_half.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/8-print_array.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/9-strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/9-strcpy.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- 1 | Solutions to projects on pointers, arrays & strings 2 | -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/_putchar.c -------------------------------------------------------------------------------- /0x05-pointers_arrays_strings/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x05-pointers_arrays_strings/main.h -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/.1-strncat.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/.1-strncat.swp -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/0-strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/0-strcat.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/1-strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/1-strncat.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/100-rot13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/100-rot13.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/101-print_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/101-print_number.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/102-magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/102-magic.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/103-infinite_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/104-print_buffer.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/2-strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/2-strncpy.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/3-strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/3-strcmp.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/4-rev_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/6-cap_string.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/7-leet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/7-leet.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- 1 | Solution to task on Arrays & Pointers 2 | -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/_putchar.c -------------------------------------------------------------------------------- /0x06-pointers_arrays_strings/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x06-pointers_arrays_strings/main.h -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/0-memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/0-memset.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/1-memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/1-memcpy.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/100-set_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/100-set_string.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/101-crackme_password: -------------------------------------------------------------------------------- 1 | abc123 -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/2-strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/2-strchr.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/3-strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/3-strspn.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/4-strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/4-strpbrk.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/5-strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/5-strstr.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/7-print_chessboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/8-print_diagsums.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/README.md: -------------------------------------------------------------------------------- 1 | Solutions to tasks on more pointers & arrays 2 | -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/_putchar.c -------------------------------------------------------------------------------- /0x07-pointers_arrays_strings/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x07-pointers_arrays_strings/main.h -------------------------------------------------------------------------------- /0x08-recursion/0-puts_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x08-recursion/0-puts_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/1-print_rev_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x08-recursion/1-print_rev_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/100-is_palindrome.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x08-recursion/100-is_palindrome.c -------------------------------------------------------------------------------- /0x08-recursion/101-wildcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x08-recursion/101-wildcmp.c -------------------------------------------------------------------------------- /0x08-recursion/2-strlen_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x08-recursion/2-strlen_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/3-factorial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x08-recursion/3-factorial.c -------------------------------------------------------------------------------- /0x08-recursion/4-pow_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x08-recursion/4-pow_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/5-sqrt_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x08-recursion/5-sqrt_recursion.c -------------------------------------------------------------------------------- /0x08-recursion/6-is_prime_number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x08-recursion/6-is_prime_number.c -------------------------------------------------------------------------------- /0x08-recursion/README.md: -------------------------------------------------------------------------------- 1 | Add solutions to tasks on recurssions 2 | -------------------------------------------------------------------------------- /0x08-recursion/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x08-recursion/_putchar.c -------------------------------------------------------------------------------- /0x08-recursion/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x08-recursion/main.h -------------------------------------------------------------------------------- /0x09-static_libraries/README.md: -------------------------------------------------------------------------------- 1 | Solutions to tasks on static libraries 2 | -------------------------------------------------------------------------------- /0x09-static_libraries/create_static_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x09-static_libraries/create_static_lib.sh -------------------------------------------------------------------------------- /0x09-static_libraries/libmy.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x09-static_libraries/libmy.a -------------------------------------------------------------------------------- /0x09-static_libraries/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x09-static_libraries/main.h -------------------------------------------------------------------------------- /0x0A-argc_argv/0-whatsmyname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0A-argc_argv/0-whatsmyname.c -------------------------------------------------------------------------------- /0x0A-argc_argv/1-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0A-argc_argv/1-args.c -------------------------------------------------------------------------------- /0x0A-argc_argv/100-change.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0A-argc_argv/100-change.c -------------------------------------------------------------------------------- /0x0A-argc_argv/2-args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0A-argc_argv/2-args.c -------------------------------------------------------------------------------- /0x0A-argc_argv/3-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0A-argc_argv/3-mul.c -------------------------------------------------------------------------------- /0x0A-argc_argv/4-add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0A-argc_argv/4-add.c -------------------------------------------------------------------------------- /0x0A-argc_argv/README.md: -------------------------------------------------------------------------------- 1 | Solution to tasks on arguments for main 2 | -------------------------------------------------------------------------------- /0x0B-malloc_free/0-create_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0B-malloc_free/0-create_array.c -------------------------------------------------------------------------------- /0x0B-malloc_free/1-strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0B-malloc_free/1-strdup.c -------------------------------------------------------------------------------- /0x0B-malloc_free/100-argstostr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0B-malloc_free/100-argstostr.c -------------------------------------------------------------------------------- /0x0B-malloc_free/101-strtow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0B-malloc_free/101-strtow.c -------------------------------------------------------------------------------- /0x0B-malloc_free/2-str_concat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0B-malloc_free/2-str_concat.c -------------------------------------------------------------------------------- /0x0B-malloc_free/3-alloc_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0B-malloc_free/3-alloc_grid.c -------------------------------------------------------------------------------- /0x0B-malloc_free/4-free_grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0B-malloc_free/4-free_grid.c -------------------------------------------------------------------------------- /0x0B-malloc_free/README.md: -------------------------------------------------------------------------------- 1 | Solutions to tasks on malloc and free 2 | -------------------------------------------------------------------------------- /0x0B-malloc_free/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0B-malloc_free/main.h -------------------------------------------------------------------------------- /0x0C-more_malloc_free/0-malloc_checked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x0C-more_malloc_free/1-string_nconcat.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/100-realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0C-more_malloc_free/100-realloc.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/101-mul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0C-more_malloc_free/101-mul.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/2-calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0C-more_malloc_free/2-calloc.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/3-array_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0C-more_malloc_free/3-array_range.c -------------------------------------------------------------------------------- /0x0C-more_malloc_free/README.md: -------------------------------------------------------------------------------- 1 | Solution to tasks on more malloc 2 | -------------------------------------------------------------------------------- /0x0C-more_malloc_free/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0C-more_malloc_free/main.h -------------------------------------------------------------------------------- /0x0D-preprocessor/0-object_like_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0D-preprocessor/0-object_like_macro.h -------------------------------------------------------------------------------- /0x0D-preprocessor/1-pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0D-preprocessor/1-pi.h -------------------------------------------------------------------------------- /0x0D-preprocessor/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0D-preprocessor/2-main.c -------------------------------------------------------------------------------- /0x0D-preprocessor/3-function_like_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0D-preprocessor/3-function_like_macro.h -------------------------------------------------------------------------------- /0x0D-preprocessor/4-sum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0D-preprocessor/4-sum.h -------------------------------------------------------------------------------- /0x0D-preprocessor/README.md: -------------------------------------------------------------------------------- 1 | Solutions to tasks on preprocessor 2 | -------------------------------------------------------------------------------- /0x0E-structures_typedef/1-init_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0E-structures_typedef/1-init_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/2-print_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0E-structures_typedef/2-print_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/4-new_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0E-structures_typedef/4-new_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/5-free_dog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0E-structures_typedef/5-free_dog.c -------------------------------------------------------------------------------- /0x0E-structures_typedef/README.md: -------------------------------------------------------------------------------- 1 | Solutions to tasks on structs 2 | -------------------------------------------------------------------------------- /0x0E-structures_typedef/dog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0E-structures_typedef/dog.h -------------------------------------------------------------------------------- /0x0F-function_pointers/0-print_name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0F-function_pointers/0-print_name.c -------------------------------------------------------------------------------- /0x0F-function_pointers/1-array_iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0F-function_pointers/1-array_iterator.c -------------------------------------------------------------------------------- /0x0F-function_pointers/100-main_opcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0F-function_pointers/100-main_opcodes.c -------------------------------------------------------------------------------- /0x0F-function_pointers/2-int_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0F-function_pointers/2-int_index.c -------------------------------------------------------------------------------- /0x0F-function_pointers/3-calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0F-function_pointers/3-calc.h -------------------------------------------------------------------------------- /0x0F-function_pointers/3-get_op_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0F-function_pointers/3-get_op_func.c -------------------------------------------------------------------------------- /0x0F-function_pointers/3-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0F-function_pointers/3-main.c -------------------------------------------------------------------------------- /0x0F-function_pointers/3-op_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0F-function_pointers/3-op_functions.c -------------------------------------------------------------------------------- /0x0F-function_pointers/README.md: -------------------------------------------------------------------------------- 1 | Solutions to tasks on Function pointers 2 | -------------------------------------------------------------------------------- /0x0F-function_pointers/function_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x0F-function_pointers/function_pointers.h -------------------------------------------------------------------------------- /0x10-variadic_functions/0-sum_them_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x10-variadic_functions/0-sum_them_all.c -------------------------------------------------------------------------------- /0x10-variadic_functions/1-print_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x10-variadic_functions/1-print_numbers.c -------------------------------------------------------------------------------- /0x10-variadic_functions/2-print_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x10-variadic_functions/2-print_strings.c -------------------------------------------------------------------------------- /0x10-variadic_functions/3-print_all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x10-variadic_functions/3-print_all.c -------------------------------------------------------------------------------- /0x10-variadic_functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x10-variadic_functions/README.md -------------------------------------------------------------------------------- /0x10-variadic_functions/variadic_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x10-variadic_functions/variadic_functions.h -------------------------------------------------------------------------------- /0x12-singly_linked_lists/0-print_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x12-singly_linked_lists/1-list_len.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/100-first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x12-singly_linked_lists/100-first.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/101-hello_holberton.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/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/ehoneahobed/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/ehoneahobed/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/ehoneahobed/alx-low_level_programming/HEAD/0x12-singly_linked_lists/4-free_list.c -------------------------------------------------------------------------------- /0x12-singly_linked_lists/README.md: -------------------------------------------------------------------------------- 1 | Solutions to tasks on singly linked lists 2 | -------------------------------------------------------------------------------- /0x12-singly_linked_lists/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x12-singly_linked_lists/lists.h -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/0-print_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/0-print_listint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/1-listint_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/1-listint_len.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/10-delete_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/10-delete_nodeint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/100-reverse_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/100-reverse_listint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/101-print_listint_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/101-print_listint_safe.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/102-free_listint_safe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/102-free_listint_safe.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/103-find_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/103-find_loop.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/2-add_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/2-add_nodeint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/3-add_nodeint_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/3-add_nodeint_end.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/4-free_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/4-free_listint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/5-free_listint2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/5-free_listint2.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/6-pop_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/6-pop_listint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/7-get_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/7-get_nodeint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/8-sum_listint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/8-sum_listint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/9-insert_nodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/9-insert_nodeint.c -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/README.md: -------------------------------------------------------------------------------- 1 | Solutions for tasks on more singly lineked lists 2 | -------------------------------------------------------------------------------- /0x13-more_singly_linked_lists/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x13-more_singly_linked_lists/lists.h -------------------------------------------------------------------------------- /0x14-bit_manipulation/0-binary_to_uint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/0-binary_to_uint.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/0-main.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/1-main.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/1-print_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/1-print_binary.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/100-get_endianness.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/100-get_endianness.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/100-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/100-main.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/101-password: -------------------------------------------------------------------------------- 1 | Hol -------------------------------------------------------------------------------- /0x14-bit_manipulation/2-get_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/2-get_bit.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/2-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/2-main.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/3-set_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/3-set_bit.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/4-clear_bit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/4-clear_bit.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/4-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/4-main.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/5-flip_bits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/5-flip_bits.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/5-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/5-main.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/README.md -------------------------------------------------------------------------------- /0x14-bit_manipulation/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/_putchar.c -------------------------------------------------------------------------------- /0x14-bit_manipulation/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/a -------------------------------------------------------------------------------- /0x14-bit_manipulation/b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/b -------------------------------------------------------------------------------- /0x14-bit_manipulation/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/c -------------------------------------------------------------------------------- /0x14-bit_manipulation/crackme3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/crackme3 -------------------------------------------------------------------------------- /0x14-bit_manipulation/f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/f -------------------------------------------------------------------------------- /0x14-bit_manipulation/h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/h -------------------------------------------------------------------------------- /0x14-bit_manipulation/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x14-bit_manipulation/main.h -------------------------------------------------------------------------------- /0x15-file_io/0-read_textfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x15-file_io/0-read_textfile.c -------------------------------------------------------------------------------- /0x15-file_io/1-create_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x15-file_io/1-create_file.c -------------------------------------------------------------------------------- /0x15-file_io/100-elf_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x15-file_io/100-elf_header.c -------------------------------------------------------------------------------- /0x15-file_io/2-append_text_to_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x15-file_io/2-append_text_to_file.c -------------------------------------------------------------------------------- /0x15-file_io/3-cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x15-file_io/3-cp.c -------------------------------------------------------------------------------- /0x15-file_io/README.md: -------------------------------------------------------------------------------- 1 | Solution to tasks on file I/O 2 | -------------------------------------------------------------------------------- /0x15-file_io/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x15-file_io/main.h -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/0-print_dlistint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/0-print_dlistint.c -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/1-dlistint_len.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/1-dlistint_len.c -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/100-password: -------------------------------------------------------------------------------- 1 | en C Pyfo neZ 2 | -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/102-result: -------------------------------------------------------------------------------- 1 | 906609 -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/103-keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/103-keygen.c -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/2-add_dnodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/2-add_dnodeint.c -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/3-add_dnodeint_end.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/3-add_dnodeint_end.c -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/4-free_dlistint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/4-free_dlistint.c -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/5-get_dnodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/5-get_dnodeint.c -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/6-sum_dlistint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/6-sum_dlistint.c -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/7-insert_dnodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/7-insert_dnodeint.c -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/8-delete_dnodeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/8-delete_dnodeint.c -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/README.md -------------------------------------------------------------------------------- /0x17-doubly_linked_lists/lists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x17-doubly_linked_lists/lists.h -------------------------------------------------------------------------------- /0x18-dynamic_libraries/1-create_dynamic_lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/1-create_dynamic_lib.sh -------------------------------------------------------------------------------- /0x18-dynamic_libraries/100-operations.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/100-operations.so -------------------------------------------------------------------------------- /0x18-dynamic_libraries/101-make_me_win.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/101-make_me_win.sh -------------------------------------------------------------------------------- /0x18-dynamic_libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/README.md -------------------------------------------------------------------------------- /0x18-dynamic_libraries/funcs/0-isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/funcs/0-isupper.c -------------------------------------------------------------------------------- /0x18-dynamic_libraries/funcs/0-memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/funcs/0-memset.c -------------------------------------------------------------------------------- /0x18-dynamic_libraries/funcs/0-strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/funcs/0-strcat.c -------------------------------------------------------------------------------- /0x18-dynamic_libraries/funcs/1-isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/funcs/1-isdigit.c -------------------------------------------------------------------------------- /0x18-dynamic_libraries/funcs/1-memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/funcs/1-memcpy.c -------------------------------------------------------------------------------- /0x18-dynamic_libraries/funcs/1-strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/funcs/1-strncat.c -------------------------------------------------------------------------------- /0x18-dynamic_libraries/funcs/README.md: -------------------------------------------------------------------------------- 1 | # Solutions to tasks on dynamic libraries 2 | -------------------------------------------------------------------------------- /0x18-dynamic_libraries/funcs/_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/funcs/_putchar.c -------------------------------------------------------------------------------- /0x18-dynamic_libraries/libdynamic.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/libdynamic.so -------------------------------------------------------------------------------- /0x18-dynamic_libraries/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/main.h -------------------------------------------------------------------------------- /0x18-dynamic_libraries/putshack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/putshack.c -------------------------------------------------------------------------------- /0x18-dynamic_libraries/putshack.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x18-dynamic_libraries/putshack.so -------------------------------------------------------------------------------- /0x1A-hash_tables/.gitignore: -------------------------------------------------------------------------------- 1 | *main.c -------------------------------------------------------------------------------- /0x1A-hash_tables/0-hash_table_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1A-hash_tables/0-hash_table_create.c -------------------------------------------------------------------------------- /0x1A-hash_tables/1-djb2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1A-hash_tables/1-djb2.c -------------------------------------------------------------------------------- /0x1A-hash_tables/100-sorted_hash_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1A-hash_tables/100-sorted_hash_table.c -------------------------------------------------------------------------------- /0x1A-hash_tables/2-key_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1A-hash_tables/2-key_index.c -------------------------------------------------------------------------------- /0x1A-hash_tables/3-hash_table_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1A-hash_tables/3-hash_table_set.c -------------------------------------------------------------------------------- /0x1A-hash_tables/4-hash_table_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1A-hash_tables/4-hash_table_get.c -------------------------------------------------------------------------------- /0x1A-hash_tables/5-hash_table_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1A-hash_tables/5-hash_table_print.c -------------------------------------------------------------------------------- /0x1A-hash_tables/6-hash_table_delete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1A-hash_tables/6-hash_table_delete.c -------------------------------------------------------------------------------- /0x1A-hash_tables/README.md: -------------------------------------------------------------------------------- 1 | # Solutions to tasks on Hash tables -------------------------------------------------------------------------------- /0x1A-hash_tables/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1A-hash_tables/a -------------------------------------------------------------------------------- /0x1A-hash_tables/hash_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1A-hash_tables/hash_tables.h -------------------------------------------------------------------------------- /0x1C-makefiles/0-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1C-makefiles/0-Makefile -------------------------------------------------------------------------------- /0x1C-makefiles/1-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1C-makefiles/1-Makefile -------------------------------------------------------------------------------- /0x1C-makefiles/100-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1C-makefiles/100-Makefile -------------------------------------------------------------------------------- /0x1C-makefiles/2-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1C-makefiles/2-Makefile -------------------------------------------------------------------------------- /0x1C-makefiles/3-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1C-makefiles/3-Makefile -------------------------------------------------------------------------------- /0x1C-makefiles/4-Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1C-makefiles/4-Makefile -------------------------------------------------------------------------------- /0x1C-makefiles/5-island_perimeter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1C-makefiles/5-island_perimeter.py -------------------------------------------------------------------------------- /0x1C-makefiles/README.md: -------------------------------------------------------------------------------- 1 | # Solutions to tasks on 0x1C. C - Makefiles 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/0-linear: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/0-linear -------------------------------------------------------------------------------- /0x1E-search_algorithms/0-linear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/0-linear.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/0-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/0-main.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/1-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/1-binary -------------------------------------------------------------------------------- /0x1E-search_algorithms/1-binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/1-binary.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/1-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/1-main.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/100-jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/100-jump.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/101-O: -------------------------------------------------------------------------------- 1 | O(sqrt(n)) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/102-interpolation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/102-interpolation.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/103-exponential.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/103-exponential.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/104-advanced_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/104-advanced_binary.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/105-jump_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/105-jump_list.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/106-linear_skip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/106-linear_skip.c -------------------------------------------------------------------------------- /0x1E-search_algorithms/107-O: -------------------------------------------------------------------------------- 1 | O(n) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/108-O: -------------------------------------------------------------------------------- 1 | O(sqrt(n)) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/2-O: -------------------------------------------------------------------------------- 1 | O(n) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/3-O: -------------------------------------------------------------------------------- 1 | O(1) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/4-O: -------------------------------------------------------------------------------- 1 | O(log(n)) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/5-O: -------------------------------------------------------------------------------- 1 | O(1) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/6-O: -------------------------------------------------------------------------------- 1 | O(nm) 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/README.md: -------------------------------------------------------------------------------- 1 | # Solutions to tasks on 0x1E. C - Search Algorithms 2 | -------------------------------------------------------------------------------- /0x1E-search_algorithms/search_algos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/0x1E-search_algorithms/search_algos.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehoneahobed/alx-low_level_programming/HEAD/README.md -------------------------------------------------------------------------------- /git_session/README.md: -------------------------------------------------------------------------------- 1 | # Sample readme file 2 | I added this line on github 3 | --------------------------------------------------------------------------------