This commit is contained in:
Oleksandr Vyshniakov 2025-10-08 09:56:53 +02:00
parent 5fa6957503
commit e43ff4f749

View File

@ -1,5 +1,7 @@
#include <stdio.h>
#define STACK_SIZE 101
#include <stdlib.h>
#include <string.h>
#define STACK_SIZE 10
struct stack {
@ -7,6 +9,18 @@ struct stack {
int size;
};
void push_stack(struct stack* stack, float value) {
}
float pop_stack(struct stack* stack) {
}
int count_stack(struct stack* stuck) {
}
int main() {
return 0;