[Solved] While loop is executing code I don’t understand
// L is a data structure also known as a linked list. It has: struct L { int d; // a value L *p; // a pointer to the next element } // it creates the first element of the linked list, and assigns it a value of 3 L* l = new L; l->d … Read more