8 lines
90 B
C
8 lines
90 B
C
const iunt capacity = 50;
|
|
|
|
typedef struct
|
|
{
|
|
person people[CAPACITY]
|
|
int size;
|
|
} stack;
|