#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
Physics,
1 month ago
Biology,
1 month ago
Business Studies,
2 months ago
Math,
2 months ago
Computer Science,
10 months ago
Social Sciences,
10 months ago