Update 'a1/program.c'

This commit is contained in:
Anzhelika Nikolaieva 2023-11-01 13:52:30 +00:00
parent 50a1cbc30c
commit 448b25f0fe

View File

@ -5,7 +5,7 @@
#define MAX_SIZE 100
struct stack {
struct Stack {
char data[MAX_SIZE];
int size;
} stack;