struct node; { struct node* prev; int data; struct node* next; }; int main() { struct node *head=malloc(sizeof(struct node)); head->prev=NULL; head->data=15; head->next=NULL: }