.
This commit is contained in:
parent
5fa6957503
commit
e43ff4f749
@ -1,5 +1,7 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#define STACK_SIZE 101
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#define STACK_SIZE 10
|
||||||
|
|
||||||
|
|
||||||
struct stack {
|
struct stack {
|
||||||
@ -7,6 +9,18 @@ struct stack {
|
|||||||
int 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() {
|
int main() {
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user