Responsive Ads Here

Wednesday, November 26, 2014

Celsius to Fahrenheit

 

Celsius to Fahrenheit

 

#include <stdio.h>
main()
{
    float C,F;
    printf("Temperature of Celsius= ");
    scanf("%f",&C);
    F= (C+32)*9/5;
    printf("Temperature of Fahrenheit= %.2f",F);
}

No comments:

Post a Comment

php4

<?php    // Start the session  session_start();  ?>  <!DOCTYPE html>  <html>  <head>       <link rel=&q...