Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

General Discussion

deanleggatt
deanleggatt
3,720 Points

Linked List C

Hello all

I don't know if anyone here codes in C, but I've been looking at this code for days and I am struggling to find out what's wrong.

I'm trying to create a simple linked list with a for loop, after which I print it out, but when I print it out the value that is printed is "3" as opposed to "1, 2 3". Here is my code

#include<stdio.h>
#include <alloca.h>


typedef int DATA;
struct Node
{
    DATA d;
    struct Node *next;
};




int printList(struct Node **head)
{

    struct Node *newNode = (struct Node *)malloc(sizeof(struct Node));
    struct Node *temp;
    temp = *head;
   while(temp!=NULL)
   {
       printf("%d \n", temp->d);
       temp = temp->next;

   }

    return 0;
}




int main()



{
    struct Node *newNode = (struct Node *)malloc(sizeof(struct Node));
    struct Node *head = newNode;
    struct Node *temp = newNode;
    head->d = 1;
    int i = 0;
    printf("Enter 3 numbers");


    for( i = 0; i< 3; i++)
    {
        scanf("%d", &temp->d);
        temp->next = newNode;
        temp = temp->next;

    }

    temp->next = NULL;
    printf("%d \n", temp->d);

    return 0;

}