Get Mystery Box with random crypto!

#Edu_quiz Algorithms and Data Structures void fun1(struct nod | IASAedu 🇺🇦

#Edu_quiz Algorithms and Data Structures

void fun1(struct node* head)
{
if(head == NULL)
return;

fun1(head->next);
printf("%d ", head->data);
}