Revision history of "Linked List"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 00:11, 8 March 2019Tata (talk | contribs). . (1,839 bytes) +1,839. . (Created page with " #include<stdio.h> #include<stdlib.h> struct Node { int val; Node* next; }; Node* new_node(int val) { Node* node = (Node*)malloc(sizeof(Node)); node->val = val...")