Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 411 Bytes

3.29.md

File metadata and controls

5 lines (5 loc) · 411 Bytes
  • The size of the array is fixed and must be known when defined.
  • Character array needs to leave space for null character at the end.
  • Arrays can not be copied or assigned as a whole.
  • Array can not be constructed with the same values like the constructor of vector when defined.
  • The size of array must be calculated when using (sometimes cannot be calculated at all) instead of calling a size() method.