Algorithms_in_C
1.0.0
Set of algorithms implemented in C.
|
Files | |
file | c_atoi_str_to_integer.c |
Recoding the original atoi function in stdlib.h. | |
file | decimal_to_binary_recursion.c |
Convert decimal to binary using recursion algorithm. | |
file | hexadecimal_to_octal2.c |
Convert hexadecimal number to octal number (with decimal intermediary) | |
file | infix_to_postfix.c |
Infix to Postfix Expression Conversion | |
file | int_to_string.c |
Convert a positive integer to string (non-standard function) representation. | |
file | octal_to_hexadecimal.c |
Octal to hexadecimal conversion by scanning user input. | |