A stack can be implemented only using array?if not what is used?
Answer Posted / 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 |
Post New Answer View All Answers
What is the equivalent code of the following statement in WHILE LOOP format?
What are the different types of pointers used in c language?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What does sizeof int return?
What is the role of this pointer?
Why do we use c for the speed of light?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
How can I prevent another program from modifying part of a file that I am modifying?
When can you use a pointer with a function?
What is optimization in c?
Can a pointer be volatile in c?
What do mean by network ?
How can you increase the size of a statically allocated array?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
Find MAXIMUM of three distinct integers using a single C statement