Skip to content

Instantly share code, notes, and snippets.

@devansh42
Created July 29, 2019 19:42
Show Gist options
  • Save devansh42/4c6b088e9b66ac34203bd58821e86e51 to your computer and use it in GitHub Desktop.
Save devansh42/4c6b088e9b66ac34203bd58821e86e51 to your computer and use it in GitHub Desktop.
LinkedList* new_linked_list(){
LinkedList* x; //Declaring a new instance of linked list
Node* n;//to do some temporary arrangements
x=(LinkedList*)malloc(sizeof(LinkedList)); // allocating memory for the linked list
return x; //returing it back
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment