#ifndef NODE_H #define NODE_H struct node{ int data ; node * next ; }; #endif