What is the output of the following function in which start is pointing to the first node of the following linked list 1->2->3->4->5->6?
void fun(struct node* start)
{
if(start == NULL)
return;
printf("%d ", start->data);
if(start->next != NULL )
fun(start->next->next);
printf("%d ", start->data);
}