This post explains to find tanspose of a matrix using the C programming language.
C Program to Find Transpose of a Matrix
#include <stdio.h> int main() { int row,col,i,j,A[10][10],B[10][10]; printf("\n Enter the number of rows and columns
This post explains to find tanspose of a matrix using the C programming language.
#include <stdio.h> int main() { int row,col,i,j,A[10][10],B[10][10]; printf("\n Enter the number of rows and columns
This post helps add two matrices using multi-dimensional arrays in the C programming language.
#include <stdio.h> int main() { int A[10][10],B[10][10],C[10][10],i,j,row,col; printf("\n Enter row and column: "); scanf("%d
This post multiplies two matrices using multi-dimensional arrays in the C programming language.
#include <stdio.h> int main() { int m, n, p, q, i, j, k, sum =
This post helps to search a number in an array using the C programming language.
#include<stdio.h> #define MAX_SIZE 100 int main() { int arr[MAX_SIZE]; int size,i,search,found; printf("\n Enter
This post helps calculate the standard deviation using the C programming language.
#include<stdio.h> #include<math.h> float CSD(float data[]) { float sum=0.0, mean, SD=0.0; int i; for(i=0;i<5;i++) { sum+=data[i]; mean=sum/5; } for(i=0;i<5;i++) SD+=pow(data[i]-mean,2);
This post explains the deletion of an element from an array using the C programming language.
#include <stdio.h> #define MAX_SIZE 100 int main() { int arr[MAX_SIZE]; int i,
This post helps to find largest element in an array using the C programming language.
#include <stdio.h> int main() { int array[10] = {1, 2, 3, 4, 5,
This post helps to find the size of the array using the C programming language.
#include <stdio.h> int main() { int array[5]= { 1, 2, 3, 4, 5
This post helps to insert an element into an array using the C programming language.
#include <stdio.h> int main() { int arr[100] = { 0 }; int i,
This post helps to reverse a string using recursion by the use of C programming language.
#include <stdio.h> #include <string.h> void reverse(char[],int,int); int main() { char str1[20]; int size;