Untitled
unknown
plain_text
16 days ago
274 B
2
Indexable
Never
#include<stdio.h> #include<conio.h> struct node { int data; struct node*next; struct node*prev; }; struct node*head=null struct node*last=null struct node*current=null void print list(){ struct node*ptr=head; print("%d<=>",ptr data); ptr=ptr next; }
Leave a Comment