In doubly link list each node contain ______.
If stack contain no item then it is called as ___
Consider the following statements.
i. stack is a LIFO
ii. stack is a FIFO
iii. queue is a LIFO
iv. queue is a FIFO
Interpret the following statement :
void(*b)(int *);
If there are no element in stack empty(s) returns as the value
A stack in c is declared as a ____ containing two objects
Consider the program segment given below. (The numbers represent program line numbers) :
1. #include
2. int y;
3. void main()
4.{
5. int x,*px,**px;
6. x = 10;
7. y = 1000;
8. px = &x;
9. ppx = &px;
10. f3(ppx);
11. printf(“%d”,*px);
12.}
13.void f3(int **pp)
14.{
15. *pp = &y;
16. printf(“%d”,**pp);
17.}
The printf() at line 11 prints the value :
A linked list can have member node, which has
Stack is constantly changing