@saandeep-sreerambatla-hWHU1M
•
Oct 9, 2024
Oct 9, 2024
1.0K
Linked Lists Questions
This is the basic declaration we do while working on linked lists.
struct node {
int data;
struct node* next;
};
why is the next declared as a pointer? and...