13 lines
136 B
C
13 lines
136 B
C
#include <stdio.h>
|
|
#define STACK_SIZE 101
|
|
|
|
|
|
struct stack {
|
|
float values[STACK_SIZE];
|
|
int size;
|
|
};
|
|
|
|
|
|
int main() {
|
|
return 0;
|
|
} |