Please explain the difference

后端 未结 4 719
攒了一身酷
攒了一身酷 2020-12-30 15:33

i have a program about 2-D arrays

base adress is 8678

#include
#include
         


        
4条回答
  •  心在旅途
    2020-12-30 15:53

    array + 1 means the array[1] 's address and it costs 3 int memory.

    &array + 1 means the address of array[0] add 1;

提交回复
热议问题