My code is not giving correct output

#include
#include
#include
using namespace std;
bool comapre(string s1,string s2){
return s1<s2;

}

int main(){
int n;
cin>>n;
vectorv;
for(int i=0;i<n;i++){
string fruit;
cin>>fruit;
v.push_back(fruit);
}

sort(v.begin(),v.end(),comapre);
for(auto x:v)
cout<<x<<endl;

}

Hi @kundanjha1076,
u need to make comparator in different way.
refer to dis.


hope dis helps.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.