C Program to Multiply Two Matrix Using Multi-dimensional Arrays

This example will show you how to multiply two matrices using two dimensional array in C program. In this example we will ask user to enter the number of rows and columns for two matrices. Then we will also ask user to enter the elements at each index of two matrices. Here we will see also how to use pointers…

C Program to Add Two Matrix Using Multi-dimensional Arrays

Introduction This example will show you how to add two matrices using two dimensional array in C program. In this example a user will be asked to enter the number of rows and columns for two matrices. Then user will be asked to enter the elements at each index of the matrices. Once user finishes providing inputs for two matrices…

Find minimum of elements in Array

This example will show you how to find a minimum of elements in an Array using C program.

Find maximum of elements in Array

This example will show you how to find a maximum of elements in an Array using C program.

Reverse elements in Array

This example will show you how to reverse elements in an Array using C program.

Delete an Element from Array

This example will show you how to delete an element from an Array using C program.

Insert an Element into Array

How to insert element? This example will show you how to insert an element into an Array using C program. Insertion of an element in an existing array is also straight forward. So, you need to iterate through the array elements (if elements are already there in the array), then you need to find an appropriate index of the array…

Search an Element in Array

How to find element? This example will show you how to search an element in an Array using C program. Finding an element in an array is straight forward. You need to loop through the array elements and compare each element with the given or target element. If the element is found, an index of the element is returned otherwise…