fork download
  1. #include <stdio.h>
  2.  
  3. unsigned int abs(int x) {
  4. return 1;
  5. }
  6.  
  7. int main() {
  8. printf("%d\n", abs(-2));
  9. return 0;
  10. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
-2