//Below are the function which the user needs to add on the place of the "Your solution goes here".
double KelvinToCelsius(double valueKelvin)
{
double valueCelsius;
valueCelsius = valueKelvin - 273.15;
return valueCelsius;
}
Explanation:
Missing information : The above question is missing which states to define one function which name is "KelvinToCelsius" and which takes one argument and changes the kelvin value into Celsius value. One header file syntax is also missing on the above question.
The above question wants to add a function to the place of the "Your solution goes here" and the work of the function is defined on the question.
So the above-defined function is used to return the value of Celsius if the user passes the value of kelvin.
The above-question also holds one function which takes the value of kelvin and returned Celsius, which returns value "283.15".
So if a user passes "283.15 for the kelvin value, then he got 10 which is defined as Celsius value on the question".