27 lines
317 B
C
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;
|
|
} |