All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Ta Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 00:11, 8 March 2019 Tata (talk | contribs) created page Linked List (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...")