fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int b = 5;
  5. int *a = &b;
  6. printf("%p\n", a);
  7. printf("%d\n", *a);
  8. printf("%d", b);
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/496505/101
Success #stdin #stdout 0s 4964KB
stdin
Standard input is empty
stdout
0x7fff39b86784
5
5