https://online.codingblocks.com/player/7408/content/1353?s=1478
In this video in this
if(root->left !=NULL && root->right==NULL){
LinkedList leftLL=flatten(root->left);
leftLL.tail->right=root;
l.head=left.head;
l.tail=root;
return l;
}
please tell that leftLL.tail->right ?is wriitten here how iit can be tail->right?