lozinke.cpp: In function 'int main()':
lozinke.cpp:24:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(int z=0;z<s[i].length();z++)
| ~^~~~~~~~~~~~~~
lozinke.cpp:26:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | if(k==s[j].length()-1&&s[i][z]==s[j][k])
| ~^~~~~~~~~~~~~~~~~
lozinke.cpp:11:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
11 | scanf("%d",&n);
| ~~~~~^~~~~~~~~