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 |
What are shell structures used for?
What is self-referential structure in c programming?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
difference between malloc and calloc
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
why effort estimation is important?
ATM machine and railway reservation class/object diagram
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
a simple program in c language
Why c is called top down?
What is a header file?
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);