Print the Elements of a Linked List code example

Example 1: how to print the elements of a linked list in c

typedef struct node{
    int value; //this is the value the node stores
    struct node *next; //this is the node the current node points to. this is how the nodes link
}node;

void printList(node *head){
    node *tmp = head;

    while(tmp != NULL){
        if(tmp->next == NULL){
            printf("%d", tmp->value);
        }
        else{
            printf("%d, ", tmp->value);
        }
        tmp = tmp->next;
    }
}

Example 2: print elements of linked list

void printLinkedList(SinglyLinkedListNode* head) {
while(head!=NULL)
{
cout<<head->data<<endl;
head=head->next;
}}

Tags:

Cpp Example