palindromic.cpp: In function 'void bt(int)':
palindromic.cpp:24:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | if(cur == st1.size() / 2){
| ~~~~^~~~~~~~~~~~~~~~~
palindromic.cpp:26:20: 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]
26 | for(int i = 0; i < part.size(); i++){
| ~~^~~~~~~~~~~~~
palindromic.cpp: In function 'int main()':
palindromic.cpp:14:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
14 | scanf("%d", &t);
| ~~~~~^~~~~~~~~~