Like we have string = "Cow eat Grass/Cat eat mouse/Dog eat meat/Fish eat worm/Snake eat mouse" I try to make function like:
std::string getTheLastAnimalText(const std::string& source)
{
// .... Can you help here :)
return "Snake eat mouse";
I try to make this function but i can't ;(