restruct 1

This commit is contained in:
ada-dmitry
2023-09-11 17:15:34 +03:00
parent 096d8dea1a
commit 6809e2ef5f
67 changed files with 0 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#define N 5
typedef struct Stack
{
double x;
struct Stack *next;
} Stack;
void linked_print(Stack *l);
Stack *add_head(Stack *l, double x);
Stack *del_head(Stack *l);