Skip to content

Commit af6de4b

Browse files
authored
Update stack.c (TheAlgorithms#617)
1 parent 544f492 commit af6de4b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

data_structures/stack.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
////////////////////////////////////////////////////////////////////////////////
1515
// DATA STRUCTURES
16+
/**
17+
* creating a stucture with 'data'(type:int), two pointers 'next','pre' (type: struct node) .
18+
*/
1619
struct node
1720
{
1821
int data;

0 commit comments

Comments
 (0)