calk added

This commit is contained in:
ada-dmitry
2023-04-24 22:40:49 +03:00
parent 62d99ba675
commit 7fe48f9bc4
8 changed files with 418 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#define N 6
typedef struct Stack {
double x;
struct Stack *next;
} Stack;
Stack get(Stack *l, int n);
Stack *add_head(Stack *l, double x);
void stack_print(Stack *l);
int len(Stack *l);
Stack *del_head(Stack *l);