What is printed?std::vector<int> v{10, 20, 30, 40}; int i = 0; for (auto& x : v) { if (i == 2) x = 99; ++i; } for (int n : v) std::cout << n << " ";