Сортування матриці
u:
int graphdriver = DETECT,gmode,errorcode;
printf(“as:%s\n”);
initgraph(&graphdriver,&gmode,”c:\\bcpp\\bgi”);
errorcode=graphresult();
if(errorcode!=grOk)
{ printf(“Graphics error:%s\n”,grapherrormsg(errorcode));
printf(“Press any key to exit:”);
exit(1);
}
settextstyle(0,0,3);
outtextxy(100,190,”Вихід (Esc)”);
outtextxy(100,90,”Обробка(Enter)”);
setcolor(15);
int d;
d=getch();
switch (d)
{ case 13:
restorecrtmode();
work();
goto u;
case 27:
exit(0);
default:
goto u;