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