MCPcopy Create free account
hub / github.com/I-Rinka/BIT-Compile-Principle / GetPoint

Function GetPoint

Lab2/src/Matrix_Operation.c:2–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include<stdlib.h>
2int *GetPoint(int *matrix, int size, int x, int y)
3{
4 return matrix + x * size + y;
5}
6
7int *Multiply(int *matrix1, int *matrix2, int size)
8{

Callers 2

mainFunction · 0.70
MultiplyFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected