This is a simple command-line application written in C to convert temperatures between:
- Celsius and Kelvin
- Fahrenheit and Celsius
- Kelvin and Fahrenheit
- Clear menu-driven interface using
switch-case - Accurate conversion formulas with precision up to 2 decimal places
- Clears screen between steps for better user experience
- Compile the code:
gcc Temperature_Converter.c -o temp_converter
- Run the code:
./temp_converter
See included LICENSE file for more details.