Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 50 additions & 0 deletions khushi
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#include <stdio.h>
#include <stdlib.h>

struct Node
{
int data;
struct Node *next;
};

void linkedListTraversal(struct Node *ptr)
{
while (ptr != NULL)
{
printf("Element: %d\n", ptr->data);
ptr = ptr->next;
}
}

int main()
{
struct Node *head;
struct Node *second;
struct Node *third;
struct Node *fourth;

// Allocate memory for nodes in the linked list in Heap
head = (struct Node *)malloc(sizeof(struct Node));
second = (struct Node *)malloc(sizeof(struct Node));
third = (struct Node *)malloc(sizeof(struct Node));
fourth = (struct Node *)malloc(sizeof(struct Node));

// Link first and second nodes
head->data = 7;
head->next = second;

// Link second and third nodes
second->data = 11;
second->next = third;

// Link third and fourth nodes
third->data = 41;
third->next = fourth;

// Terminate the list at the third node
fourth->data = 66;
fourth->next = NULL;

linkedListTraversal(head);
return 0;
}