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 | celsius_to_fahrenheit.c |
Conversion of temperature in degrees from Celsius to Fahrenheit. | |
file | decimal_to_any_base.c |
Decimal to any-base is a C function wich convert positive decimal integer to any positive ascii base with the base's alphabet given in input and return it in a dynamically allocated string(recursive way) | |
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 | infix_to_postfix2.c |
Infix to Postfix converter implementation | |
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. | |
file | roman_numerals_to_decimal.c |
Conversion of roman numerals to decimal. | |