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