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

Function input

All Algorithms/strassen.cpp:23–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21}
22
23void input(int** M, int r, int c) {
24 cout << "Enter matrix: " << endl;
25 for (int i = 0; i < r; i++)
26 for (int j = 0; j < c; j++)
27 cin >> M[i][j];
28 cout << endl;
29}
30int** initializeMatrix(int r, int c) {
31 int** temp = new int*[r];
32 for (int i = 0; i < r; i++)

Callers 10

mainFunction · 0.85
solveFunction · 0.85
Selection_Sort.pyFile · 0.85
tim_sort.pyFile · 0.85
AGELIMIT.pyFile · 0.85
Lapindromes.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected