//Faça um Programa que peça a temperatura em graus Celsius, transforme e mostre em graus Farenheit.
#include <stdio.h>
#include <stdlib.h>
main() {
float tc, tf;
printf ("Indique a temperatura em graus Celsius:");
scanf ("%f",&tc);
tf = (tc*1,8)+32;
printf ("\nEssa temperatura em graus Farenheit equivale a %.2f.",tf);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: