Code has been added to clipboard!

C++ Linked List Structure for Single Node

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