#include <stdio.h> int main() { int celcius = 100; // Change the celcius here float fahrenhiet; fahrenhiet = 9/5*(celcius+32); printf("Fahrenhiet %f",fahrenhiet); return 0; }
Fahrenhiet 132.000000
Comments :