mplementation of stack using any programing language
Answer / aravind
1. stack as an array or linked list (two ways)
2.define array.
3.perform push operation by taking one more array.
4.perform pop and store the popped items
5.display function to print the popped values
6.make sure you reach LIFO
| Is This Answer Correct ? | 3 Yes | 3 No |
How can you check to see whether a symbol is defined?
What is null character in c?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
What are the languages are portable and platform independent?Why they are like that?
write a program to display the numbers having digit 9 in the given range from 1 to 100
Write a program to compute the following 1!+2!+...n!
Are there constructors in c?
What are the standard predefined macros?
What is the meaning of c in c language?
How do you search data in a data file using random access method?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers