Featured Post

Step Wise Project Planning

Planning is the most difficult process in project management. The framework described is called the Stepwise method to help to distinguis...

  1. Home
Showing posts with label DS. Show all posts
Showing posts with label DS. Show all posts

Write a program to perform various operation on matrices.

Write a program to perform various operation on matrices. #include <stdio.h> #include<conio.h> #define MAX 3 int cre...

Write a program to perform linear search in 2D array.

Write a program to perform linear search in 2D array.  #include <stdio.h> #include<conio.h> #define MAX 3 int create...

Write a program of link list implementation of a queue.

Write a program of link list implementation of a queue. #include <stdio.h> #include<alloc.h> #include<conio.h> ...

Write a program to swap two nos. using call by value and call by reference.

Write a program to swap two nos. using call by value and call by reference. #include<stdio.h> #include<conio.h> int sw...