Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

celsius to fahrenheit formula

float cel;
printf("Enter celsius value: ");
scanf("%f", &cel);

printf("Fahrenhit value is: %f", cel * (9 / 5) + 32);
Source by www.mathsisfun.com #
 
PREVIOUS NEXT
Tagged: #celsius #fahrenheit #formula
ADD COMMENT
Topic
Name
6+5 =