diff --git a/data_structures/stack.c b/data_structures/stack.c index 026ca525..0bae7c52 100644 --- a/data_structures/stack.c +++ b/data_structures/stack.c @@ -13,6 +13,9 @@ //////////////////////////////////////////////////////////////////////////////// // DATA STRUCTURES +/** + * creating a stucture with 'data'(type:int), two pointers 'next','pre' (type: struct node) . + */ struct node { int data;