Array in C++

C Program to Search an element in Array.

/*C Program to Search an element in Array */ #include<stdio.h> int main() {    int a[30], ele, num, i;    prin…

1-D Array

One Dimensional Array in C We can declare an array in the c language in the following way. data_type array_name[arra…

What is array?

C Array Array  in C language is a  collection  or  group  of elements (data).  All the elements of c array are  homog…

C program to find transpose of matrix.

/*C program to find transpose of matrix*/ #include <stdio.h> #include <conio.h> void main() { int m, n, c…

C program to multiply two matrices.

Array in C /*Matrices Multiplication*/ #include<stdio.h> #include<conio.h> void main() {   int a[5][5],b…

Load More
That is All