document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //////////////////////////
  2. /* main.c */
  3.  
  4. #include "helloworld.h"
  5.  
  6. int main ()
  7. {
  8.     helloWorld();
  9. }
  10.  
  11. //////////////////////////
  12. /* helloworld.h */
  13.  
  14. void helloWorld();
  15.  
  16. //////////////////////////
  17. /* helloworld.c */
  18.  
  19. #include "helloworld.h"
  20.  
  21. #include <stdio.h>
  22. #include <math.h>
  23.  
  24. void helloWorld()
  25. {
  26.     long double x;
  27.         for (x=1; x<14; ++x)
  28.         printf("%c",(int) (long double) (43189*pow(x,12)/479001600
  29.                         - 9751* pow(x,11)/1267200
  30.                         + 2550839*pow(x,10)/8709120
  31.                         - 9518329*pow(x,9)/1451520
  32.                         + 1391746459*pow(x,8)/14515200
  33.                         - 332152549*pow(x,7)/345600
  34.                         + 58724195669*pow(x,6)/8709120
  35.                         - 2294231779*pow(x,5)/69120
  36.                         + 1231032990581*pow(x,4)/10886400
  37.                         - 468238830697*pow(x,3)/1814400
  38.                         + 123386850029*x*x/332640
  39.                         - 147341797*x/495+99109 + 0.5 )
  40.                 );
  41. }
');