kmartinkokmart1500 kmartinkokmart1500 23-05-2023 Computers and Technology contestada Which of the following correctly initializes a doubly linked list in the default constructor? a. head = NULL; back = NULL; b. head = 0; back = 0; count = 0; c. first = 0; last = 0; d. first = NULL; last = NULL; count = 0;