Saturday, 4 March 2017

C++ program of data insertion and deletion in stack

In this program we will learn how to insert and delete data in a stack.Stack works on the principal of LIFO last in first out so new data can only be inserted and delete from the last index.e.g if we take the array of 5 elements, 0,1,2,3,4. so the data existing on the last index (4) an only be inserted...
Share:

Friday, 3 March 2017

Wednesday, 1 March 2017

C++ program of multiplication of array

In this program we will learn how to enter data in array and multiply the index of array. The code is given below: //Code starts #include <iostream> #include <conio.h> using namespace std; int main() { int a; int array[a]; int multi; multi=1; cout<<"enter size of array"<<endl; ...
Share:

Sunday, 26 February 2017