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 Temperature from Degree Centigrade to Fahrenheit

Details
Written by: sk.shahida
Category: C Programs
  • Basic C Programs-2
#include<stdio.h>
#include<conio.h>
void main()
{
    float c,f;
    clrscr();
    printf("Enter the Temperature in Centigrade: ");
    scanf("%f",&c);
    f=(1.8*c)+32;
    printf("Temparature in Fahrenheit is : %f",f);
    getch();
}

 OUTPUT:

Enter the Temperature in Centigrade: 24
Temparature in Fahrenheit is : 75.199997
Previous article: C Program to Find Sum of 5 Subjects and Percentage Prev Next article: C Program to Find Area and Circumference of a circle. Next
  • C Program to CONCATENATE Two Strings using strcat()
  • Bubble Sort in C
  • C Program to Compare Two Strings using strcmp()
  • C Program for Fibonacci Series using While Loop
  • C Program to Find Length of a String Using STRLEN()
  • Finding GCD and LCM of Given Numbers using C
  • C Program to Reverse Elements in Array
  • C Program to Find Radius and Circumference of a Circle
  • C Program to Find Prime Factors of a Given Positive Number
  • C Program to Find Area of Rectangle
  • C Program to Solve Tower of Hanoi Problem Using Recursive and Non-Recursive
  • C Program to Implement Structure with Array
  • C Program to Find Sum of 5 Subjects and Percentage
  • C Program to Find Biggest among Three Numbers
  • C Program to Find Address Locations of Variables
  • Privacy Policy
  • Cookie Policy
© programming9.com 2026
Back to top