#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
0
Answer:
iwjhsud
Explanation:
uejgsijsgwijwgsujsvehje
Answered by
0
See simply I am saying this is fake programming cus linkedlist is not used in any normal language
Similar questions
French,
15 days ago
Math,
15 days ago
Business Studies,
1 month ago
Math,
1 month ago
Computer Science,
8 months ago
Social Sciences,
8 months ago