Thursday, 27 August 2020

Farenheat program

So  in this post we are going to learn about the conversion of farenheat.
I hope you will enjoy this post.

#include<stdio.h>
#include<conio.h>
void main()
{
float f,c;
printf("Enter the temperature in celsius: \n");
scanf("%f",&c);
f=1.8*c+32;
printf("Temperaturein farenheat is %f",f);
getch();
}

so try this program and enjoy.

No comments:

Post a Comment

C Programming

What is DBMS in brief?

A Database Management System (DBMS) is a software suite designed to efficiently manage, organize, store, manipulate, and retrieve data. It a...