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

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

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

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


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