How do I access a value from this initializer declared using auto keyword?
auto arr = { "one", "two", "three", "four", "five", "six", "seven", "eight", "nine" };
auto a = arr[0];
Give the following compile-error on VS:
binary '[' : 'std::initializer_list' does not define this operator or a conversion to a type acceptable to the predefined operator