fork download
  1. #include <stdio.h>
  2.  
  3. #define ADDR 3
  4. #define QUOTE(str) #str
  5. #define TESTE(X) QUOTE(location = X + OFFSET)
  6.  
  7. int main(void) {
  8. puts(TESTE(ADDR));
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
location = 3 + OFFSET