Реферат: Динамическое распределение памяти
{
for (int i=0;i<matr->m;i++)
{
for (int j=0;j<matr->n;j++) (matr->ptr[i][j])=M[i][j];
}
}
double OctNorm(Matr *matr)
{
double max=0;
double a=0;
for (int i=0;i<matr->m;i++)
{
max+=matr->ptr[i][0];
}
for (int j=0;j<matr->n;j++)
{
for (i=0;i<matr->m;i++)
{
a+=matr->ptr[i][j];
}
if (a>max) max=a;
a=0;
}
return max;
}
Задание №14
#include <stdio.h>
#include <alloc.h>
#include <conio.h>