Skip to content

Instantly share code, notes, and snippets.

@amirul12
Created September 10, 2016 18:57
Show Gist options
  • Save amirul12/2a1b79fb48445d803ef29abfa12afe91 to your computer and use it in GitHub Desktop.
Save amirul12/2a1b79fb48445d803ef29abfa12afe91 to your computer and use it in GitHub Desktop.
সেলসিয়াস স্কেলের তাপমাত্রাকে ফারেনহাইট তাপমাত্রায় রুপান্তর সি প্রোগ্রাম
#include<stdio.h>
#include<conio.h>
main()
{
int c, f;
printf("Enter celcious temperature :");
scanf("%d",&c);
f=9*c/5+32;
printf("Ferhenheight temperature:%d”,f);
getch();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment