This commit is contained in:
Oleksandr Vyshniakov 2025-10-08 09:33:28 +02:00
parent 8b8f6e398f
commit 5fa6957503

View File

@ -1,4 +1,12 @@
#include <stdio.h>
#define STACK_SIZE 101
struct stack {
float values[STACK_SIZE];
int size;
};
int main() {
return 0;