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 to Implement Circular Linked List
  • C Program to Calculate Sum of Even Values in an Array
  • C Program to find Reverse of a Number
  • C Program to Implement Doubly Linked List Operations
  • C Program to Solve Sum of Series 1-x2/2! +x4/4!-x6/6!+x8/8!-x10/10!
  • C Program to Find the Prime Numbers
  • C Program to Implement Single Linked List Operations
  • C Program to Find Biggest among Three Numbers
  • C Program to Find Sum of N Natural Numbers
  • C Program for Optimal Page Replacement Algorithm
  • Fizz Buzz Implementation in C
  • C Program for String Comparison without using Built in Function
  • Bit Stuffing Program in C
  • C Program to Check Given Number is PRIME or Not
  • C Program for Circumference of a Circle
  • Privacy Policy
  • Cookie Policy
© programming9.com 2026
Back to top