work in progress...1

This commit is contained in:
ada.dmitry
2023-05-16 09:40:30 +03:00
parent 0cf222ed89
commit 58a2573b52
14 changed files with 224 additions and 165 deletions
+6 -6
View File
@@ -1,13 +1,13 @@
#define N 5
#define N 6
typedef struct Stack {
typedef struct Stack
{
double x;
struct Stack *next;
} Stack;
Stack get(Stack *l, int n);
void linked_print(Stack *l);
Stack *add_head(Stack *l, double x);
void stack_print(Stack *l);
int len(Stack *l);
Stack *del_head(Stack *l);
int len(Stack *l);
Stack get(Stack *l, int n);