Skip to content

Instantly share code, notes, and snippets.

@amirul12
Created September 10, 2016 19:01
Show Gist options
  • Save amirul12/694e2ae902f42892a60d6f7ed0ccb3aa to your computer and use it in GitHub Desktop.
Save amirul12/694e2ae902f42892a60d6f7ed0ccb3aa to your computer and use it in GitHub Desktop.
ফারেনহাইট স্কেলের তাপমাত্রাকে সেলসিয়াস তাপমাত্রায় রুপান্তর সি প্রোগ্রাম
#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