fork download
  1. #include <stdio.h>
  2. #define UPP 300
  3. float* pp(float* x) {
  4. ++*x;
  5. return x;
  6. }
  7.  
  8. float conversion(float fahr);
  9.  
  10. main(){
  11. float far;
  12. int a;
  13. a = UPP;
  14. for(far = 0; far <= a; pp(pp(pp(pp(pp(pp(pp(pp(pp(pp(pp(pp(pp(pp(pp(pp(pp(pp(pp(pp(&far)))))))))))))))))))))
  15. printf("%.f\t%.1f\n", far, conversion(far));
  16. }
  17.  
  18. float conversion(float cels){
  19. float c;
  20. c = ((5*(cels-32))/(9));
  21. return c;
  22. }
  23.  
Success #stdin #stdout 0s 4492KB
stdin
Standard input is empty
stdout
0	-17.8
20	-6.7
40	4.4
60	15.6
80	26.7
100	37.8
120	48.9
140	60.0
160	71.1
180	82.2
200	93.3
220	104.4
240	115.6
260	126.7
280	137.8
300	148.9