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 |
Explain the difference between fopen() and freopen().
How to add two numbers with using function?
How can I prevent another program from modifying part of a file that I am modifying?
Apart from dennis ritchie who the other person who contributed in design of c language.
1. main() { printf("%d",printf("HelloSoft")); } Output?
please give me answer with details #include<stdio.h> main() { int i=1; i=(++i)*(++i)*(++i); printf("%d",i); getch(); }
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
When you call malloc() to allocate memory for a local pointer, do you have to explicitly free() it?
Diff between for loop and while loop?
Three major criteria of scheduling.
Find if a number is power of two or not?
What is LINKED LIST? How can you access the last element in a linked list?