Data Structures

Casual Mode - Take your time!

1 / 15
Correct
0
Incorrect
0
Score
0%
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).
Change Mode