A program that read temperature in Fahrenheit & display Celsius in Cpp.

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

void main()
{
    float c,f;
    clrscr();
    cout<<"Enter Temperature in Fahrenheit, f= : ";
    cin>>c;

    c=(float)5/9*(f-32);
   
    cout<<"\nEquivelent Temperature in Celsius, c =<<c;
    getch();
}


////////////////////////////////////////////
Copy & paste this code in your TC & run, then you will get output.......
If you have any problem please comment below.........