: In function 'int main()':
:19:23: error: expected ';' before 'v'
19 | for (const auto& s v)cout<<s<<endl;
| ^~
| ;
:19:24: error: could not convert 'v' from 'std::vector<std::__cxx11::basic_string<char> >' to 'bool'
19 | for (const auto& s v)cout<<s<<endl;
| ^
| |
| std::vector<std::__cxx11::basic_string<char> >
:19:25: error: expected ';' before ')' token
19 | for (const auto& s v)cout<<s<<endl;
| ^
| ;
:19:32: error: use of 's' before deduction of 'auto'
19 | for (const auto& s v)cout<<s<<endl;
| ^