-->

Facebook

Jasper Roberts - Blog
Showing posts with label cpu(2110003) Tutorials. Show all posts
Showing posts with label cpu(2110003) Tutorials. Show all posts

Thursday, February 26, 2015

Write a C Program to convert Fahrenheit temperature to Centigrade.

// C Program to convert Fahrenheit temperature to Centigrade.

#include<stdio.h>
#include<conio.h>

void main()
{
       float fah, centi;
       clrscr();

       printf("Enter the temperature in Fahrenheit:");
       scanf("%f",&fah);