usaa25/du3/program.c
2025-10-08 09:56:53 +02:00

27 lines
317 B
C

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define STACK_SIZE 10
struct stack {
float values[STACK_SIZE];
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;
}