Having trouble understanding Linked List in C
#define SIZE 100000 // 1. hash_function() is a function that return an int // 2. snowflake_node typedef struct snowflake_node { int snowflake[6]; struct snowflake_node *next; } snowflake_node; // 3. main int main(void) { static snowflake_node *snowflakes[SIZE] = {NULL}; snowflake_node *snow; int n, i, j, hash_code; scanf(“%d”, &n); for (i = 0; i < n; i++) […]