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 |
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
How can we open a file in Binary mode and Text mode?what is the difference?
Write code for initializing one dimentional and two dimentional array in a C Program?
5 Answers Deshaw, Edutech, GMD,
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
What are the 3 types of structures?
What are the usage of pointer in c?
Why is event driven programming or procedural programming, better within specific scenario?
how to compare two strings without using strcmp() function??
Is it possible to create recycle bin in mobiles?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
What does & mean in scanf?