refresh
This commit is contained in:
parent
8b8f6e398f
commit
5fa6957503
@ -1,4 +1,12 @@
|
|||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#define STACK_SIZE 101
|
||||||
|
|
||||||
|
|
||||||
|
struct stack {
|
||||||
|
float values[STACK_SIZE];
|
||||||
|
int size;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user