Computer Science, asked by vaibhavsolanki8954, 10 months ago

C program to find transpose of a matrix using dynamic memory allocation

Answers

Answered by RishiAEC
3

Answer:

Program to Find the Transpose of a Matrix

#include <stdio.h>

int a[10][10], transpose[10][10], r, c, i, j;

printf("Enter rows and columns: ");

scanf("%d %d", &r, &c);

// Assigning elements to the matrix.

printf("\nEnter matrix elements:\n");

for (i = 0; i < r; ++i)

for (j = 0; j < c; ++j) {

Answered by Itzgaurav
2

refer to the attachment

Attachments:
Similar questions