C Exercises: Count all possible paths from top left to bottom right of a m X n matrix
C Array: Exercise-85 with Solution
Write a program in C to count all possible paths from top left to bottom right of a m X n matrix.
Sample Solution:
C Code:
#include <stdio.h>
// Function to count all possible paths from top-left to bottom-right in a matrix of size m x n
int PathCounting(int m, int n)
{
int ctr[m][n]; // Define a matrix to store path counts
// Initialize the leftmost column elements to 1 (only one way to reach each cell in the leftmost column)
for (int i = 0; i < m; i++)
{
ctr[i][0] = 1;
}
// Initialize the top row elements to 1 (only one way to reach each cell in the top row)
for (int j = 0; j < n; j++)
{
ctr[0][j] = 1;
}
// Calculate the number of paths for each cell in the matrix
for (int i = 1; i < m; i++)
{
for (int j = 1; j < n; j++)
{
ctr[i][j] = ctr[i - 1][j] + ctr[i][j - 1]; // Number of paths to reach current cell = paths from left + paths from top
}
}
return ctr[m - 1][n - 1]; // Return the number of paths to reach the bottom-right cell
}
int main()
{
int p, q;
p = 4; // Number of rows in the matrix
q = 4; // Number of columns in the matrix
printf("The size of matrix is: %d, %d\n", p, q);
printf("The all possible paths from top left to bottom right is: %d\n", PathCounting(p, q));
return 0;
}
Sample Output:
The size of matrix is : 4 x 4 The all possible paths from top left to bottom right is: 20
Visual Presentation:
Flowchart:

C Programming Code Editor:
Previous: Write a program in C to find the minimum distance between two numbers in a given array.
Next: Write a program in C to find the equilibrium index of an array.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join