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);}
This is my personal collection of daily lessons, professional insights, and programming experiences. It’s a space where I document what I learn, and you can explore and learn from my journey too.
No comments:
Post a Comment