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