fork download
  1.  
  2. f(n){return n?1+f(n/10):0;}
  3.  
  4. main(void){ printf("%d",f(-12345678)); }
  5.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
8