Vidyalelo
Data Structure · Q146

Introduction to Data Structures

Programming · Data Structure · question 146

Q146

What does the following function check for? (all necessary headers to be included and function is called from main) #define MAX 10 typedef struct stack int top; int item[MAX]; stack; int function(stack *s) if(s->top == -1) return 1; else return 0;

A.
full stack
B.
invalid index
C.
empty stack
Answer
D.
infinite stack

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board