fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char x = 'r';
  6. char* ref = &x;
  7.  
  8. printf("%c", &x);
  9. printf("%p", ref);
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0s 5396KB
stdin
Standard input is empty
stdout
�0x7ffc050552a7