mirror of
https://github.com/ada-dmitry/prog.l_ada.git
synced 2026-09-24 01:00:15 +00:00
12 lines
173 B
C
12 lines
173 B
C
#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);
|