Lecture 04 - Array Part 1
Array
Collection of similar type of data. Also the size of array is fixed.
Creating an Array
syntax : datatype variable_name [size];
example : int MyArray [5];
Initialisation
int arr[5] = {1, 2, 3, 4, 5};
int arr[] = {1, 2, 3, 4};
int arr...
akashjaiswal-dsa.hashnode.dev3 min read