printer.cpp: In function 'int32_t main()':
printer.cpp:19:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | if (mx < words[i].size()) {
| ~~~^~~~~~~~~~~~~~~~~
printer.cpp:44:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::__cxx11::basic_string<char> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | for (int i = 1; i < smol.size(); ++i) {
| ~~^~~~~~~~~~~~~
printer.cpp:46:15: warning: comparison of integer expressions of different signedness: 'int' and 'const long unsigned int' [-Wsign-compare]
46 | while (ind < min(cur.size(), smol[i].size()) &&
| ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp:59:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | for (int j = ind + 1; j < smol[i].size(); ++j) {
| ~~^~~~~~~~~~~~~~~~
printer.cpp:78:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::__cxx11::basic_string<char> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
78 | for (int i = start; i < big.size(); ++i) {
| ~~^~~~~~~~~~~~
printer.cpp:80:14: warning: comparison of integer expressions of different signedness: 'int' and 'const long unsigned int' [-Wsign-compare]
80 | while (ind < min(cur.size(), big[i].size()) &&
| ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
printer.cpp:93:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
93 | for (int j = ind + 1; j < big[i].size(); ++j) {
| ~~^~~~~~~~~~~~~~~
printer.cpp:27:3: warning: 'c' may be used uninitialized in this function [-Wmaybe-uninitialized]
27 | if (words[i][0] == c) {
| ^~