fork download
  1. #include <stdio.h>
  2.  
  3. void foo(long* l)
  4. {
  5. printf("%ld", *l);
  6. }
  7.  
  8. int main(void) {
  9. short bar = 0;
  10. foo(&bar);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5552KB
stdin
Standard input is empty
stdout
-786987512949112832