A stack can be implemented only using array?if not what is used?

Answers were Sorted based on User's Feedback



A stack can be implemented only using array?if not what is used?..

Answer / namita

linked list

Is This Answer Correct ?    15 Yes 0 No

A stack can be implemented only using array?if not what is used?..

Answer / vignesh1988i

stack is not always implemented using array's , it can also
be implemented through linked lists in DATA STRUCTURES,,,

Is This Answer Correct ?    11 Yes 0 No

A stack can be implemented only using array?if not what is used?..

Answer / bharat chandra

stack can implemented by Array(static)format and linked
lised (dynamic)formated.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

why programming language C is still used in operating system's kernel??

1 Answers   Wipro,


What is difference between union All statement and Union?

0 Answers  


Why is #define used?

0 Answers  


code for bubble sort?

1 Answers  


What will happen when freeing memory twice

2 Answers  


What language is lisp written in?

0 Answers  


6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1

4 Answers  


What do you mean by invalid pointer arithmetic?

0 Answers  


What is unsigned int in c?

0 Answers  


main() { char p[] = "hello world!"; p = "vector"; printf("%s",p); }

2 Answers   Vector, Vector India,


what is c language?

2 Answers  


Are local variables initialized to zero by default in c?

0 Answers  


Categories