Computer Science, asked by YOURDADPRODUCTION, 1 day ago

To take temperature in Celsius as float type from user and convert into Fahrenheit. [ SUBJECT ARTIFICIAL INTELLIGENCE, CLASS 9th ]​

Answers

Answered by aidenfernandes0407
2

Answer:

  1. #include<stdio.h>
  2. int main()
  3. {
  4. float fahrenheit, celsius;
  5. celsius = 24;
  6. fahrenheit =( (celsius*9)/5)+32;
  7. printf("\n\n Temperature in fahrenheit is: %f",fahrenheit);
  8. return (0)
  9. Mark as Brainliest!

Similar questions