// The following code is meant to convert a given temperature in Kelvin into // degrees Celsius according to the provided formula. // However, it has some issues that you need to fix. Good luck! #include //////////////////////////////////////////////////////////////////////// // DO NOT CHANGE THIS PROTOTYPE void kelvin_to_celsius(double kelvin, double *celsius); // DO NOT CHANGE THIS PROTOTYPE //////////////////////////////////////////////////////////////////////// int main(void) { double kelvin; int celsius; printf("Enter temperature in Kelvin: "); scanf("%d", kelvin); printf("%d Kelvin is equal to %lf Celsius.\n", kelvin, celsius); return 0; } void kelvin_to_celsius(double kelvin, double *celsius) { celsius = kelvin - 273.15; }