A stack can be implemented only using array?if not what is used?
Answers were Sorted based on User's Feedback
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 |
Answer / bharat chandra
stack can implemented by Array(static)format and linked
lised (dynamic)formated.
| Is This Answer Correct ? | 0 Yes | 0 No |
swap 2 numbers without using third variable?
Explain what is dynamic data structure?
Where are local variables stored in c?
What are the 32 keywords in c?
how can use subset in c program and give more example
what is mallloc()?how it works?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What are the different properties of variable number of arguments?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
Can you apply link and association interchangeably?
Which is better between malloc and calloc?
Why c is faster than c++?