Joseph Haugh
University of New Mexico
/* */
or //
Arrays are a collection of elements
Arrays are zero-indexed
Arrays can be initialized using the following syntax:
int array[] = {1, 2, 3, 4, 5};
Arrays are contiguous in memory
Arrays can be passed to functions
Arrays can be passed to functions as pointers
*
operator&
operator&
operator performs a bitwise AND|
operator performs a bitwise OR^
operator performs a bitwise XOR~
operator performs a bitwise NOT<<
operator performs a left shift>>
operator performs a right shift