My first post

This is my website . Welcome everybody to my new website. Here there are some necessary things of yours.

ফারেনহাইট তাপমাত্রাকে সেন্টিগ্রেড তাপমাত্রায় রূপান্তরের সি প্রোগ্রামিং

 #include<stdio.h>

 #include<conio.h>

 main()
 {
 float c, F;
 printf("Enter Temperature:");
scanf("%f", &F);
 c=5*(F-32)/9;
printf("Result is: %.2f", c);
getch();
 }

Comments