Skip to main content

Posts

Showing posts with the label 7. Write a C program to enter temperature in Celsius and convert it into Fahrenheit.

ads1

7. Write a C program to enter temperature in Celsius and convert it into Fahrenheit.

  7. Write a C program to enter temperature in Celsius and convert it into Fahrenheit. Solution :-  #include<conio.h> #include<stdio.h> void main() {     clrscr();     float fahrenheit,celsius;     printf("Enter the temperature in Celsius:-");     scanf("%f",&celsius);     fahrenheit =(celsius *9/5)+32;     printf("The Temperature in Fahrenheit is :-%f",fahrenheit); getch(); } Output : -                

ads2