fork(5) download
  1. #include <stdio.h>
  2.  
  3. unsigned long long cal(unsigned short in)
  4. {
  5. unsigned long long x;
  6. x = in*3300*47*100*24;
  7. x /= 4096*867*15;
  8. return x;
  9. }
  10.  
  11. int main(void) {
  12. // your code goes here
  13. printf( "cal(6) = %llu", cal(6));
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5676KB
stdin
Standard input is empty
stdout
cal(6) = 346297549163