Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,855 questions

51,776 answers

573 users

How to iterate over a linked list in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>

typedef struct Node {
    int x;
    struct Node *next;
} Node;

int main(void) {
    Node root;
    
    root.x = 12;
    root.next = malloc(sizeof(Node));
    root.next->x = 189;
    root.next->next = malloc(sizeof(Node));
    root.next->next->x = 1983;
    root.next->next->next =  malloc(sizeof(Node));
    root.next->next->next->x = 10000;
    root.next->next->next->next = NULL;
    
    for (Node *current = &root; current != NULL; current = current->next) {
        printf("%d\n", current->x);
    }
    
    free(root.next->next->next);
    free(root.next->next);
    free(root.next);
    
    return 0;
}



/*
run:

12
189
1983
10000

*/

 



answered Dec 30, 2020 by avibootz
edited Dec 30, 2020 by avibootz

Related questions

1 answer 72 views
72 views asked Mar 9, 2025 by avibootz
1 answer 150 views
150 views asked May 2, 2021 by avibootz
1 answer 147 views
1 answer 140 views
140 views asked Dec 26, 2020 by avibootz
2 answers 174 views
2 answers 171 views
4 answers 153 views
153 views asked Nov 23, 2023 by avibootz
...