Advertisement
Guest User

Untitled

a guest
Aug 20th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. float f, c;
  5. f = 98;
  6. c = (f - 32) * 5.0 / 9.0;
  7. printf("%.2f", c);
  8. return 0;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement