#include int main() { int c; float f; printf("Enter a temp : "); scanf("%d",&c); f= 5*(float)c/9; printf("%f\n",f); return 0; }