fork(1) download
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3.  
  4. struct dll{
  5. int data;
  6. struct dll* previous;
  7. struct dll* next;
  8. };
  9.  
  10.  
  11. struct dll* insertAtBeginning(int a, struct dll* head){
  12.  
  13. if(head == NULL){
  14. head->data = a;
  15. head->previous = NULL;
  16. head->next = NULL;
  17. return head;
  18. }
  19. else{
  20. struct dll *first;
  21. first = (struct dll*) malloc( sizeof(struct dll));
  22. first->data = a;
  23. first->next = head;
  24. head->previous = first;
  25. first->previous = NULL;
  26. head = first;
  27. return head;
  28. }
  29. }
  30.  
  31.  
  32. void display_from_first(struct dll* head){
  33. struct dll *temp;
  34. temp = head;
  35.  
  36. printf("\nThe linked list contains: ");
  37. while(temp != NULL) {
  38. printf("%d------>",temp->data);
  39. temp = temp->next;
  40. }
  41. printf("NULL\n");
  42. free(temp);
  43. }
  44.  
  45.  
  46. int main(){
  47. int i = 0;
  48. struct dll *head1, *tail1;
  49. head1 = (struct dll*) malloc( sizeof(struct dll));
  50. head1->next = NULL;
  51. head1->previous = NULL;
  52.  
  53. display_from_first(head1);
  54.  
  55. return 0;
  56. }
Success #stdin #stdout 0s 3272KB
stdin
Standard input is empty
stdout
The linked list contains: 0------>NULL