Arrays in C++
What is an Array?
An array is a collection of similar data stored in contiguous memory locations.
google.com, pub-8434817042454839, DIRECT, f08c47fec0942fa0
Example
int arr[3] = {10, 20, 30};
Access Elements
cout << arr[0]; // Output: 10
Use Case
Store multiple values of same type

