CPP_Trick3_1

int MyNums[] = {1, 2, 3, 4, 5};

for(int i : MyNums)
{
    std::cout << i << std::endl;
}

Share >