#include #include #include #include #define MAX 10 void generate_matrix( int M[MAX][MAX], int rows, int cols); int main(){ int matrix[MAX][MAX], temp[MAX][MAX], R, C, i , j; printf("Enter number of rows (0 to exit): "); scanf("%d", &R); if (R <= 0) return 0; printf("Enter number of columns: "); scanf("%d", &C);
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#define MAX 10
void generate_matrix( int M[MAX][MAX], int rows, int cols);
int main(){
int matrix[MAX][MAX], temp[MAX][MAX], R, C, i , j;
printf("Enter number of rows (0 to exit): ");
scanf("%d", &R);
if (R <= 0)
return 0;
printf("Enter number of columns: ");
scanf("%d", &C);
generate_matrix (matrix, R, C);
for(j=0; j<C; j++)
{
for(i=0; i<R; i++)
{
printf("%d\t", matrix[i][j]);;
}
printf("\n");
}
void generate_matrix( int M[MAX][MAX],int rows, int cols)
{
int j, i;
for(j=0; j<cols; j++)
{
for(i=0; i<rows; i++)
{
M[j][i] = (rand() % 9);
}
}
}
The generated matrix function is supposed to generate numbers 0-9
But when i test it with ROW=5, COL=7, or when ROW!=COL the generated numbers are not in between the range.
CAN you fix this issue ?

Step by step
Solved in 3 steps with 1 images









