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

Details
Written by: RajaSekhar
Category: C Programs
  • basic c programs
  • cprogram
  • celsius
  • fahrenheit
#include<stdio.h>
#include<conio.h>

void main()
{
    float celsius,fahrenheit;
    clrscr();

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

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

    getch();
}

 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
  • C Program Example to Initialize Structure Variable
  • C Program to Find Number of Characters and Words in a String
  • C Program to Find Area and Circumference of a circle.
  • C Program to Implement BINARY SEARCH
  • C Program for MERGING of Two Arrays with out using Third Array
  • Finding GCD and LCM of Given Numbers using C
  • Evaluate Algebraic Expression (ax+b)/(ax-b)
  • C Program for Sum of Digits of a Number
  • C Program to Find Factorial of a Number using Functions
  • C Program to Find the Prime Numbers
  • C Program to Convert Infix to Postfix Expression using Stack
  • C Program to Find Sum of 5 Subjects and Percentage
  • C Program to Find Factorial of a Number using While Loop
  • C Program to Delete Characters from Given String
  • C Program to Implement SJF CPU Scheduling Algorithm
  • Privacy Policy
  • Cookie Policy
© programming9.com 2026
Back to top