#include <vector>using namespace std; int main() { std::vector<double[3]> arr{ { 10, 11, 12 }, { 20, 21, 22 } }; return 0;}