I am printing the midpoint but nothing shows
void midPoint(Nodehead) {
Nodefast = head;
Node*slow = head;
while(fast->next != NULL || fast != NULL) {
fast = fast->next->next;
slow = slow->next;
}
Node*mid = slow;
cout << "Mid-Point is " << mid->data;
}