Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

c list

// Node of the list
typedef struct node {
    int val;
    struct node * next;
} node_t;
Source by www.learn-c.org #
 
PREVIOUS NEXT
Tagged: #list
ADD COMMENT
Topic
Name
5+7 =