Реферат: Системне програмне забезпечення С
}
j++;
if(i==ind)
break;
}
/*int x=40,y=50;char buf[10];
//filling the screen by numbers that are in matrix
int temp;
dc.TextOut(x,y-20,"Matrix");
for(m=0;m<ind;m++)
{
for(n=0;n<inde;n++)
{
temp=matrix[m][n];
sprintf(buf,"%d",temp);
dc.TextOut(x,y,buf,strlen(buf));
x+=30;
}
y+=20;
x=40;
}
//here we find out 'Min' element of row that was selected in ListBox
min=matrix[index][0];
for(m=1;m<inde;m++)
if(min>matrix[index][m])
min=matrix[index][m];
//here we find out 'Max' element of row that was selected in ListBox
max=matrix[index][0];
for(m=1;m<inde ;m++)