본문 바로가기

computer science/data structure

Arrays in C

  • When list[i] occurs on the RHS of '=' in an assignment
    statement, a dereference takes place and the value pointed at by
    (list+i) is returned.
  • If list[i] appears on the LHS of '=', then the value produced
    on the right-hand side is stored in the location (list+i).