fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main() {
  5. printf("%i %i %i %i\n",
  6. abs(-1.2),
  7. abs(-0.2),
  8. abs(0.2),
  9. abs(1.2));
  10. return 0;
  11. }
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
-1015622280 -349273728 -66917824 -66917824