Computer Science, asked by yaminiyellanki10, 1 month ago

#include<stdio.h>
struct node {
int data;
struct node * next;
};
typedef struct node * LIST;
void linkedlist ( LIST l)
{
if ( l == 0) return;
else{
linkedlist (l -> next );
printf ( " %d" ,l -> data) ;
}
}​

Answers

Answered by saipatil20167
0

Answer:

iwjhsud

Explanation:

uejgsijsgwijwgsujsvehje

Answered by PratyushKing
0
See simply I am saying this is fake programming cus linkedlist is not used in any normal language
Similar questions