Untitled
unknown
plain_text
a year ago
274 B
7
Indexable
#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;
}Editor is loading...
Leave a Comment