Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

what is equivalent centigrade temperature in display float numbers programme ?

0 votes
asked Dec 11, 2018 by Shivrajsinh chudasama

1 Answer

+1 vote
answered Dec 13, 2018 by shubham gupta (160 points)
#include<stdio.h>

#include<conio.h>

int main()

{

float c,f;

printf("give the celcius temperature");

scanf("%f",&c);

f=(9*c/5)+32;

printf("the %f degree celcius is equals to %f farenhite",c,f);

return 0;

}.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...