forked from hDmtP/C-language-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlnk_lst_traversal.c
More file actions
57 lines (37 loc) · 1.01 KB
/
lnk_lst_traversal.c
File metadata and controls
57 lines (37 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include<stdio.h>
#include<stdlib.h>
struct Node
{
int data;
struct Node *next;
};
void linkedListTraversal(struct Node *ptr){
while (ptr != NULL)
{ for (int i = 1; i > 0; i++)
{
printf("Element %d= %d\n", i, ptr->data);
ptr=ptr->next;
}
}
}
int main(){
struct Node *first;
struct Node *second;
struct Node *third;
struct Node *fourth;
// Allocate memory for nodes in the linked list in Heap
first = (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));
first->data = 89;
first->next = second;
second->data = 121;
second->next = third;
third->data = 466;
third->next = fourth;
fourth->data = 645;
fourth->next = NULL;
linkedListTraversal(first);
return 0;
}