how to implement stack operation using singly linked list
Answer Posted / spandana
it is a datastructure which follows the principal of Last
in First order(LIFO) ie last inserted element will be
deleted first.hence both insertions and deletions takes
place at the same end.it can perform 2
operations "PUSH","POP". the special variable used in
stacks is "top"
stacks can be implemented using arrays,linked lists
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is the sizeof () a pointer?
explain what is a newline escape sequence?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
Is c object oriented?
about c language
Describe the difference between = and == symbols in c programming?
How many types of sorting are there in c?
What is the function of this pointer?
What is c programming structure?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Write a program to print factorial of given number without using recursion?
Why doesnt that code work?
What is default value of global variable in c?
What is the difference between the expression “++a” and “a++”?