Author: Arun Vishnu

Epoch time and Epoch time milestone 0

Epoch time and Epoch time milestone

The Unix epoch (also known as Unix Time Stamp) is the representation of time as the number of non-leap seconds since 00:00:00 UTC on January 1, 1970. It is introduced by Unix operating  system,...

Testing Wondows 7 Beta 0

Testing Wondows 7 Beta

I am testing Windows 7 in a virtual machine, so it is very slow. But since I dont have a free partition in my Dell XPS laptop I have to use virtual machine. I...

C++ Program for Bubble sort 4

C++ Program for Bubble sort

C++ Program for Bubble sort. /************************************************************** Author: Arun Vishnu M V Web: www.arunmvishnu.com Description: C++ Program for Bubble sort ***************************************************************/ #include<iostream.h> #include<conio.h> void main() { int array[100],n,i,j,temp; clrscr(); cout>n; cout

C++ Program Program for Binary Search. 8

C++ Program Program for Binary Search.

C++ Program Program for Binary Search. /************************************************************** Author: Arun Vishnu M V Web: www.arunmvishnu.com Description: C++ Program Program for Binary Search. ***************************************************************/ #include<iostream.h> #include<conio.h> #include<process.h> void main() { int ar[100],beg,mid,end,i,n,search; clrscr(); coutn; cout

C++ Program to implement a stack using linked list 22

C++ Program to implement a stack using linked list

C++ Program to implement a stack using linked list. /************************************************************** Author: Arun Vishnu M V Web: www.arunmvishnu.com Description: C++ Program to implement a stack using linked list. ***************************************************************/ #include<conio.h> #include<iostream.h> #include<process.h> #include<malloc.h> // Creating...

C++ Program implement a stack using an array 12

C++ Program implement a stack using an array

C++ Program implement a stack using an array. /************************************************************** Author: Arun Vishnu M V Web: www.arunmvishnu.com Description: C++ Program implement a stack using an array ***************************************************************/ #include<conio.h> #include<iostream.h> #include<process.h> void main() { int stack[150],top,n,i,max_stack,choice,element,n_pop;...

C++ Program to add and subtract 2 sparse matrices 0

C++ Program to add and subtract 2 sparse matrices

C++ Program to add and subtract 2 sparse matrices. /************************************************************** Author: Arun Vishnu M V Web: www.arunmvishnu.com Description: C++ Program to add and subtract 2 sparse matrices ***************************************************************/ #include<conio.h> #include<iostream.h> #include<process.h> int main() {...