Computer Programming and Concept
Here You Will Know Only About Computer Programming and Concept.
Thursday, December 25, 2008
A Program that will Count Temperature From Celcius to Farenite
#include
void main ()
{
float cel, faren;
printf ("Enter value in celcius:\n");
scanf ("%f\n", &cel);
faren = 18*cel+32;
printf ("Farenite Result is :\n", faren);
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment