HOW TO: Convert Celsius To Fahrenheit in C Programming (HD)



SOURCE CODE!!!

#include <stdio.h>

int main()
{
    int celsius, fahrenheit;

    printf("Enter temperature in Celsius: ");
    scanf("%d", &celsius);

    fahrenheit=(celsius*1.8)+32;

    printf("Temperature in Fahrenheit: %d", fahrenheit);

}




Feel free to visit my YouTube channel: Four For Fighting

Comments

Popular posts from this blog