#include <stdio.h>
#include <stdlib.h>

int main(void)
{
    float c, f;
    printf("Programa: Celsius2Fahrenheit.\n\n");
    printf("Digite a temperatura em oC: ");
    scanf("%f", &c);
    f = (9/5)*c + 32;
    printf("\n\nResuldado: %.2f oC correspondem a %.2f oF!\n", c, f);
    system("pause");
    return 0;
}