Linked List Code1
AI-enhanced title
h>#include <stdlib.h>struct Node { int data; struct Node* next;};