usaa25/du3/program.c
2025-10-08 09:33:28 +02:00

13 lines
136 B
C

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