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;
- 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).