#include<stdio.h>#define TRUE 1floatconv_temp(inttemp_c);intmain(void){intinput,temp_c;while(TRUE){printf("Enter temp in C: ");scanf("%d",&temp_c);printf("%d C is %.1f F\n",temp_c,conv_temp(temp_c));}return0;}floatconv_temp(inttemp_c){return(9.0/5.0*temp_c)+32.0;}