Looping Through Arrays
Accessing Array Elements Using Loop
Example
int arr[3] = {10, 20, 30};
google.com, pub-8434817042454839, DIRECT, f08c47fec0942fa0
for(int i = 0; i < 3; i++) {
cout << arr[i];
}
Why Important?
Used in real programs for data handling

