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 STACK Operations Using Pointers
  • C Program to Find Number of Characters and Words in a String
  • Finding GCD and LCM of Given Numbers using C
  • C Program to Find Sum of 5 Subjects and Percentage
  • C Program to Sort an Array using SELECTION SORT
  • C Program to Print ASCII values of Characters
  • C Program to Find Address locations of Array Elements Using Pointers
  • FCFS CPU Scheduling Algorithm Simulation Using C
  • Evaluate Algebraic Expression (ax+b)/(ax-b)
  • C Program to Calculate Sum of Marks to Demonstrate Structures
  • C Program to Implement BINARY SEARCH
  • C Program to Print PRIME Numbers in a Given Range
  • C Program for Monthly Bill of a Newspaper
  • C Program to find an Element using Binary Search
  • C Program for Multiplication Table using Goto Statement
  • Privacy Policy
  • Cookie Policy
© programming9.com 2026
Back to top