Join Regular Classroom : Visit ClassroomTech

c coding question

C program to convert a given temperature in Centigrade scale to its equivalent Fahrenheit scale – Coding Question 1

Write a complete C program to convert a given temperature in Centigrade scale to its equivalent Fahrenheit scale. #include<stdio.h> int main() { float c,f; printf("n Enter the temperature in Celcius: "); scanf("%f",&c); f=((9*c)/5)+32; printf("n The temperature in Fahrenheit Scale: %.2f degree Fahrenheit",f); return 0; } Join Our Telegram Group Visit our Facebook Page Coding Questions

C program to convert a given temperature in Centigrade scale to its equivalent Fahrenheit scale – Coding Question 1 Read More »