#include using namespace std; //arrays int main() { int SIZE = 5; int a[SIZE]; for (int i = 0; i < SIZE; i++) a[i] = i; for (int i = 0; i < SIZE; i++) cout << a[i] <<" "; cout <