Skip to content

Instantly share code, notes, and snippets.

@tarcisio-marinho
Last active December 20, 2017 18:21
Show Gist options
  • Save tarcisio-marinho/89c6044968089df4c4741fb2c142b36f to your computer and use it in GitHub Desktop.
Save tarcisio-marinho/89c6044968089df4c4741fb2c142b36f to your computer and use it in GitHub Desktop.
typedef struct node{
int data;
struct node * next;
}Node;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment