fork download
  1. #include <stdio.h>
  2. #define ADD1 0x6000+0x10
  3. #define my_sp(x) sprintf(x,"START %d ",ADD1, "\n")
  4.  
  5. int main()
  6. {
  7. char str[256];
  8. my_sp(str);
  9. printf("%s", str);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0.01s 1676KB
stdin
Standard input is empty
stdout
START 24592