#include <stdio.h>
#include <string.h>

int main(void)
{
    float C, F;
    
    printf("Celsius:\n");
    
    scanf("%f", &C);
    
    F = C * 9 / 5 + 32;
        
    printf("Fahrenheit:\n");
    printf("%f", F);
        
    return 0;
}

//https://[Log in to view URL]
//https://[Log in to view URL]
//https://[Log in to view URL]

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: