we provide you the c downloads,c programing,c tutorials and much more at www.cplusplus-in.blogspot.com.Codes of c++ are also there for your help.This blog build your c programing style.
Saturday, 23 June 2012
how to convert celcius into fahranheit in c++
How to convert celcius into fahranheit in c++: This the source code to convert celcius into fahranheit
#include<iostream.h>
#include<conio.h>
main()
{
float f,c;
cout<<"enter the value of the centigrate:";
cin>>c;
f=9/5.0*c+32;
cout<<c<<"celcius="<<f<<"fahranhite";
system("pause");
}
thank you for sharing nice article in your blog
ReplyDeletevisit
web programming tutorial
welookups
c++ programming sample codes
ReplyDeleteComputer picks a random number from 0 to 100
ReplyDeletenice article for beginners.thank you.
javacodegeeks