Implementation of a queue in C++#includeusing namespace std;class queue{ int front,rear; int item[3]; public: void insert(int); int remove(); void display(…Read More
C Aptitude Questions...C Questions Check Your Ability In CNote : All the programs are tested under Turbo C/C++ compilers. It is assumed that, Programs run under DOS envi…Read More
A linked list program in C++#includeusing namespace std;struct node{ int info; struct node *next; struct node *getnode(); struct node *insert_last(struct no…Read More
Code for matrix problem in C++#includeusing namespace std;#define row 10#define col 10int row1,row2,col1,col2;class matrix{ int a[row][col]; int b[row][col]; int c[row][col…Read More
This is my personal blog and i write articles on .Net, WPF, C#, OOPS, Threading and other .Net technologies. This is not related to any of my employer and organizations. This is the result of my personal interest.
0 comments:
Post a Comment