Skip to content

Instantly share code, notes, and snippets.

@pubudu91
Created November 10, 2016 20:25
Show Gist options
  • Save pubudu91/bcb8f4f143867602f5add7389c8841ce to your computer and use it in GitHub Desktop.
Save pubudu91/bcb8f4f143867602f5add7389c8841ce to your computer and use it in GitHub Desktop.
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
for (int k = 0; k < n; k++)
C[i][j] += A[i][k] * B[k][j];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment