What are the phases in s/w developed life cycle?
wat is the diff b/w stack & queue...where do we use stack
Answer Posted / asdf
Use of stack:
1) All local variables get stored in stack.
2) To store the parameters passed to the function
3) To store the return address of the function
4) To Evaluate arithmetic expressions.
5) In recursive programming
Use of Queue:
1)Used to implement OS internals algorithms (example: in
scheduling algorithms)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What are bitwise shift operators in c programming?
Why functions are used in c?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What does static variable mean in c?
What do you mean by invalid pointer arithmetic?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Is return a keyword in c?
When we use void main and int main?
Difference between Shallow copy and Deep copy?
What is the difference between the = symbol and == symbol?
What is else if ladder?
What are the features of the c language?
Explain what math functions are available for integers? For floating point?