I realize that this is very basic but would someone mind explaining the difference between these two array declarations:
#include <array>
array<int, 5> myints;
...and:
int myints[5];
...and why myints.size()
works with the first declaration but not the second.