So I'm trying to make a program that calculates celsius to fahrenheit with function overload.
I have 1 function that calculates and 2 others that takes the data from the input
and whether its a integer or a decimal number it will use function overload to decide witch function to use.
My question is when i declare my function that calculates what data type I'm I supposed to use, as for now I'm using INT but that feels wierd when im trying to send in a float and expect to get a float back.