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

char *p="name"; printf(p);

1 Answers  


Explain the use of fflush() function?

0 Answers  


Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??

4 Answers  


a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static Which of the Following Statements are true w.r.t Bit-Fields A)a,b&c B)Only a & b C)Only c D)All

3 Answers   Accenture, Digg.com,


What is the correct declaration of main?

0 Answers  






Is c procedural or functional?

0 Answers  


What is infinite loop?

0 Answers  


What are loops c?

0 Answers  


What are valid operations on pointers?

0 Answers  


int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }

2 Answers  


What is the scope of global variable in c?

0 Answers  


Describe the difference between = and == symbols in c programming?

0 Answers  


Categories