✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Визначити складність алгоритму
void f4(int n){
for (int i=0; i<n; i++)
for (int j=0; j<n; j++){
c[i][j]=0;
for (int k=0; k<n; k++)
c[i][j]=a[i][k]+b[k][j];
}
}