You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Dynamic Storage Duration > Dynamic Arrays section, the example for deallocating the previously allocated my_int_array_ptr reads delete[] my_int_ptr.
Instead, it should read delete[] my_int_array_ptr.
In the Dynamic Storage Duration > Dynamic Arrays section, the example for deallocating the previously allocated
my_int_array_ptrreadsdelete[] my_int_ptr.Instead, it should read
delete[] my_int_array_ptr.