C Programming
C Programming

Temperature of a city is inputed through keyboard in fahrenheit, convert this temperature in centigrade degree. #C

Temperature of a city is inputed through keyboard in fahrenheit, convert this temperature in centigrade degree. #C

C Programming
C Programming

 

Temperature of a city in Fahrenheit degrees is input through the keyboard. Write a program to convert this temperature into Centigrade degrees.

 

#include <stdio.h>

int main ()

{

double f,c;

printf("Input Temprature in feranhite");

scanf("%d",&f);

c = (f-32)*(5/9);

printf("Temperature in celcius is %d",c);

return 0;

}



 

 


 

Thanks for reading this blog. Hope you get satisfied with the blog and definitely this blog must have valued your time and effort of reading.

Take a time to connect our other digital creations such as Instagram , Facebook and Youtube.

 

πŸ§‘β€πŸ’»πŸ§‘β€πŸ’»Β Social MediaΒ LinksΒ ofΒ Tech DCodeΒ :

πŸ‘‰πŸ» YouTube :Β https://www.youtube.com/channel/UCjJnEdeugftBwQ3yMuD4B_A

πŸ‘‰πŸ» Instagram :Β https://www.instagram.com/thetechdcode/

πŸ‘‰πŸ» Facebook Page :Β https://www.facebook.com/thetechdcode

πŸ‘‰πŸ» Twitter :Β https://twitter.com/thetechdcode

πŸ‘‰πŸ» Telegram Channel :Β https://t.me/thetechdcode

πŸ‘‰πŸ» Tech DCode Linktree :Β https://linktr.ee/thetechdcode

πŸ‘‰πŸ» My Personal Handles :Β https://linktr.ee/virtualshivamin

πŸ§‘β€πŸ’»πŸ§‘β€πŸ’»Β Social Media LinksΒ ofΒ SHIVAM SINGHΒ (OWNER) :

πŸ‘‰πŸ» Instagram :Β https://www.instagram.com/virtualshivamin/

πŸ‘‰πŸ» Facebook Page :Β https://www.facebook.com/virtualshivamin/

πŸ‘‰πŸ» Twitter :Β https://twitter.com/virtualshivamin/

πŸ‘‰πŸ» Personal Linktree :Β https://linktr.ee/virtualshivaminΒ 

 

 

Leave a Reply

Your email address will not be published. Required fields are marked *