[Solved] What is the list that is being built by this code?
l is pointing to the head of a linked list. So l is assigned NULL to start with, i.e. empty linked list. In the first iteration of the for-loop a node is created and assigned the value “06”. l is set to point to the newly created node. So you have: l —> (“06”, NULL) … Read more