Answer to Question #245494 in C for Arunava

Question #245494

Write a program to help them understand the American temperature readings easier, based on their indian way of understandings


1
Expert's answer
2021-10-02T07:24:20-0400
#include <stdio.h>

// converts fahrenheit to celsius
double far_to_cel(int degree) {
  return (degree - 32) * 5 / 9;
}

int main() {
  printf("32F equals to %f\n", far_to_cel(32));
  return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS