fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. int a = 3;
  5. printf("%d\n", &a);
  6. printf("%d\n", *&a);
  7.  
  8.  
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
-478031612
3