What will be the output of the function for the linked list
1 2 3 4 5 6
void func(node* root)
{
if(!root)
{
return;
}
func(root->link);
printf("%d ",root->data);
}
Answers
Answered by
1
Answer:
I got it the answer
Explanation:
please mark me as a brain list
Similar questions