AP
Size: a a a
AP
s
AP
AP
s
AD
AP
s
AP
b
R
MG
B
void temperatures(double temp){
double tempinC =5/9*(temp-32);
double tempinK = tempinC + 273.16;
printf("\t\t = TEMP IN CELS: %10.2f\n", tempinC);
printf("\t\t = TEMP IN KELVIN: %10.2f\n", tempinK);
}