Midpoint linked list

if slow is intiliase as slow=head and fast is intiliase as fast=head->next then how can slow and fast are at same position…

as i told you before

that slow and fast both pointer starts from same point
intially both should be at head;

slow=head;
fast =head;