#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);

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter12: Points, Classes, Virtual Functions And Abstract Classes
Section: Chapter Questions
Problem 3PE
icon
Related questions
Question
100%

#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 ?

Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Array
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
New Perspectives on HTML5, CSS3, and JavaScript
New Perspectives on HTML5, CSS3, and JavaScript
Computer Science
ISBN:
9781305503922
Author:
Patrick M. Carey
Publisher:
Cengage Learning