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 Print Elements of Array Using Pointers
  • C Program to Sort an Array using SELECTION SORT
  • C Program for Monthly Bill of a Newspaper
  • C program to Implement BREAK Statement
  • C Program to Copy Contents From One File to Another
  • C Program to Check Whether a Number is PALINDROME or Not
  • Merge Sort Program in C
  • C Program to find Reverse of a Number
  • C Program to Find String Length with out using Function
  • C Program to Implement Single Linked List Operations
  • C Program to find Area of a Circle
  • C Program to Find Prime Factors of a Given Positive Number
  • C Program to Calculate Sum of Marks to Demonstrate Structures
  • C Program to Convert Infix to Postfix Expression using Stack
  • C Program to Implement BINARY SEARCH
  • Privacy Policy
  • Cookie Policy
© programming9.com 2026
Back to top