Arrays Introduction

  • + 0 comments

    So basically, the 'new' operator will return a address (what a pointer stores) to the heap-allocated contiguous memory block, a.k.a. 'array' of ints, thus ".... new int[n]", where n = 10 would return the beginning address of the contiguous memory block(s). (which in total would usually be 10 * 4 bytes(sizeof(int)) )