MCPcopy Create free account
hub / github.com/anupam-kumar-krishnan/Competitive_Programming / setToZero

Function setToZero

All Algorithms/strassen.cpp:17–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15}
16
17void setToZero(int** M, int r, int c) {
18 for (int i = 0; i < r; i++)
19 for (int j = 0; j < c; j++)
20 M[i][j] = 0;
21}
22
23void input(int** M, int r, int c) {
24 cout << "Enter matrix: " << endl;

Callers 2

multiplyFunction · 0.85
mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected