Created
September 10, 2016 19:01
-
-
Save amirul12/694e2ae902f42892a60d6f7ed0ccb3aa to your computer and use it in GitHub Desktop.
ফারেনহাইট স্কেলের তাপমাত্রাকে সেলসিয়াস তাপমাত্রায় রুপান্তর সি প্রোগ্রাম
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<conio.h> | |
main() | |
{ | |
int c, f; | |
printf("Enter Ferenheight temperature :"); | |
scanf("%d",&f); | |
c=5*(f-32)/9; | |
printf("Celcious temperature:%d”,c); | |
getch(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment