Advertisements
Advertisements
प्रश्न
Write a program to find transpose of matrix without making use of another matrix.
उत्तर
#include<stdio.h>
#include<conio.h>
void main()
{
int a[10][10];
int i,j,c,r,n;
clrscr();
printf("Enter the number of columns");
scanf("%d",&c);
printf("Enter the number of rows");
scanf("%d",&r);
printf("Enter the elements of matrix");
for(i=0;i<c;i++)
{
for(j=0;j<r;j++)
{
scanf("%d",&a[i][j]);
}
}
printf("The matrix before transpose:\n");
for(i=0;i<c;i++)
{
for(j=0;j<r;j++)
{
printf("%d\t",a[i][j]);
}
printf("\n");
}
printf("The matrix after Transpose:\n");
for(i=0;i<c;i++)
{
for(j=0;j<r;j++)
{
printf("%d\t",a[j][i]);
}
printf("\n");
}
getch();
}
Output: Enter the number of columns: 3 Enter the number of rows: 3 Enter the elements of matrix: 1 2 3 4 5 6 7 8 9 The matrix before transpose: 1 2 3 4 5 6 7 8 9 The matrix after transpose: 1 4 7 2 5 8 3 6 9 |
APPEARS IN
संबंधित प्रश्न
Write the output of following code:
#include<stdio.h>
int main()
{
int val = 1;
do{
val++;
++val;
}while(val++>25);
printf(“%d\n”,val);
return 0;
}
Write a program to validate whether accepted string is palindrome or not.
Define structure consisting of following elements
1. student roll_no
2. student name
3. student percentage
Write a program to read records of 5 students of and display same.
State True or False with reason.
while(0); is an infinite loop.
WAP to print the sum of following series.
1+22+33+………+nn
Write a program to perform matrix multiplication by passing input matrix to the function and printing resultant matrix.
Write a program to display following pattern:
1
232
34543
4567654
567898765
WAP to print all possible combination of 1,2,3 using nested loops.
Write a program for finding sum of series 1+2+3+4+…….upto n terms.
Explain continue and break statements with the help of suitable examples.