Any idea how can i make a tic tac toe using full linked list? My first idea was creating this
struct Node { int data; Node*next,*prev,*up,*down; }