Question

What does this C code do?
int k = -10;
int Temp;

while(k < 41){
Temp = k * 9/5 + 32;
k++;
printf(“Temp: %f \n”, Temp);
}

Answers

Answer
Display the output
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions