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 of c:");
scanf("%f", &c);
F=9*c/5+32;
 printf("Result of Fahrenheit : %.2f", F);
 getch();
 }

Comments