stack.h--fixed

This commit is contained in:
regis37 2025-11-26 22:13:05 +01:00
parent b5e67e8368
commit 04c1328230

View File

@ -11,7 +11,7 @@ The latest element is taken from the stack. */
typedef struct Node{
int data;
int *data;
struct Node *next;
} StackNode;