#ifndef NODE_H #define NODE_H struct Node { Node *next; float item; }; #endif