Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
17
void 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
23
void input(int** M, int r, int c) {
24
cout <<
"Enter matrix: "
<< endl;
Callers
2
multiply
Function · 0.85
main
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected