1 2 3 4 5 6 7 8 9 10
#ifndef STACK_STRUCT_H #define STACK_STRUCT_H struct stack { int data; struct stack *next; }; #endif /* ! STACK_STRUCT_H */