fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. #define GAY(x) #x
  5. #define STR(x) GAY(x)
  6.  
  7. #define XXX(x) strtol(STR(x), NULL, 10)
  8.  
  9. int main(int argc, char *argv[])
  10. {
  11. printf("%d\n%d\n%d\n", XXX(01), XXX(08), XXX(000123));
  12. return 0;
  13. }
  14.  
  15.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
1
8
123