Skip to content

Instantly share code, notes, and snippets.

@tanaytoshniwal
Last active August 18, 2019 20:01
Show Gist options
  • Save tanaytoshniwal/6bcdc0071de65ea6719f5c50129b2706 to your computer and use it in GitHub Desktop.
Save tanaytoshniwal/6bcdc0071de65ea6719f5c50129b2706 to your computer and use it in GitHub Desktop.
Struct to represent a Node in a Linked List
typedef struct Node Node;
struct Node{
int data;
Node* next;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment