intx; // constexpr auto arraySize = x; //error: constexpr variable 'arraySize' must be initialized by a constant expression constexprautoarraySize=10;//ok std::array<int,arraySize>data;//ok constautoarraySize2=x; // std::array<int, arraySize2> data2; // error: non-type template...