fork download
  1. #include <stdio.h>
  2.  
  3. int a[3] = { 1, 2, 3 };
  4.  
  5. int main(void)
  6. {
  7. printf("%p\n",*(&a));
  8. printf("%p\n",&a);
  9. printf("%p\n",a);
  10.  
  11. }
  12.  
Success #stdin #stdout 0s 4856KB
stdin
Standard input is empty
stdout
0x557f0b71d010
0x557f0b71d010
0x557f0b71d010