Write a C program to accept temperatures in Fahrenheit (F) and display it in Celsius(C) and Kelvin (K) (Hint: C=5.0/9(F-32), K = C + 273.15)
#include<stdio.h>
#include<conio.h>
void main()
{
float fahrenheit,convert;
//Accept temperature
printf("\nEnter temperature in fahrenheit:");
scanf("%f",&fahrenheit);
convert=(fahrenheit - 32) * 5/9; // Formula C=5.0/9(F-32)
//To display temperature
printf("\nTemperature in celsius: %f",convert);
}
-
Next Write a menu driven program to perform the following operations on strings using standard library functions: 1. Length of String 2. Copy String 3. Connect Two Strings 4. Compare two strings
-
Previous Write a C program to accept two numbers and print arithmetic and harmonic mean of the two numbers (Hint: AM= (a+b)/2 ,HM = ab/(a+b) )
0 Comments