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

How would you write qsort?

1 Answers  


c language interview questions & answer

0 Answers  


what is an array

5 Answers  


can we write a program in c for printf and scanf without using header file stdio.h

1 Answers  


what will be the output of this program........ main() { int a=2,b=4,c=6; printf("%d"); } why it gives the value of third variable.

6 Answers   HCL,






what is difference between declaring the pointer as int and char in c language?

3 Answers  


What is the difference b/w Structure & Array?

6 Answers  


What is pragma in c?

0 Answers  


enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }

4 Answers   ME,


What are register variables in c?

0 Answers  


What is the relation between # and include<stdio.h>

5 Answers   HCL,


4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.

0 Answers   TCS,


Categories