📚 Practice Mode
Data Structures
Learn at your own pace with hints and detailed explanations
1 / 15
Multiple Choice
What is the mean of 'MAX' term in the syntax below?
typedef struct stack{ int data[MAX]; int top;}stack;
- It defines the maximum value of the elements in the stack.
- It defines the maximum size of the stack.
- It defines the number of integer values.
- It defines the number of elements in the stack.
- Both (2) and (4).