Algorithms_in_C 1.0.0
Set of algorithms implemented in C.
|
Files | |
c_atoi_str_to_integer.c | |
Recoding the original atoi function in stdlib.h. | |
celsius_to_fahrenheit.c | |
Conversion of temperature in degrees from Celsius to Fahrenheit. | |
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) | |
decimal_to_binary_recursion.c | |
Convert decimal to binary using recursion algorithm. | |
hexadecimal_to_octal2.c | |
Convert hexadecimal number to octal number (with decimal intermediary) | |
infix_to_postfix.c | |
Infix to Postfix Expression Conversion | |
infix_to_postfix2.c | |
Infix to Postfix converter implementation | |
int_to_string.c | |
Convert a positive integer to string (non-standard function) representation. | |
octal_to_hexadecimal.c | |
Octal to hexadecimal conversion by scanning user input. | |
roman_numerals_to_decimal.c | |
Conversion of roman numerals to decimal. | |