programming9
  • Flowcharts
  • Programs
      • Back
      • C Programs
      • C++ Programs
      • Java Programs
      • Python Codes
      • HTML Codes
      • Java Script Codes
      • SQL Codes
  • Tutorials
      • Back
      • Java Tutorials
      • Competitive Programming
      • Python Tutorials
      • C Programming
  • Blog
  • Login

C Program to convert Celsius to Fahrenheit

Written by: RajaSekhar
  • basic c programs
  • cprogram
  • celsius
  • fahrenheit
#include<stdio.h>

int main()
{
    float celsius,fahrenheit;

    printf("\n Enter the Temparature in Celsius : ");
    scanf("%f",&celsius);

    fahrenheit = (1.8 * celsius) + 32;
    printf("\n Temperature in Fahrenheit : %f ",fahrenheit);

    return 0;
}

OUTPUT:

Enter the Temparature in Celsius : 31

Temperature in Fahrenheit : 87.800003
Previous article: C Program for Finding Factorial of a Number Prev Next article: C Program to Find Biggest among Three Numbers Next
  • Swapping of Two Numbers Using Call By Reference in C
  • C Program to Find Number of Characters and Words in a String
  • C Program to Implement STACK Operations Using Pointers
  • C Program to Sort an Array using SELECTION SORT
  • C Program to Implement Structure with Pointers
  • C Program to Compare Two Strings using strcmp()
  • C Program to Find Sum of N Natural Numbers
  • Evaluate Algebraic Expression (ax+b)/(ax-b)
  • C Program for Insertion Sort
  • C Program to Find Sum of Individual Digits of a Positive Integer Number
  • C Program to Find Address locations of Array Elements Using Pointers
  • C Program to Find Length of a String Using STRLEN()
  • C Program to Find Given Number is Perfect or Not
  • Implementation of Stack Using Array in C
  • C Program to Sort List of Strings
  • Privacy Policy
  • Cookie Policy
© programming9.com 2026
Back to top