📚 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;

  1. It defines the maximum value of the elements in the stack.
  2. It defines the maximum size of the stack.
  3. It defines the number of integer values.
  4. It defines the number of elements in the stack.
  5. Both (2) and (4).