Навчальна програма переведення дійсних чисел з 2,8,10,16 у 2,8,10,16 системи числення
while(p>=in+1)
{triada[i][2]=*p;
p--;
if(p
triada[i][1]=*p;
p--;
if(p
triada[i][0]=*p;
p--;
if(p
i++;
}
strcat(out,"-");
for(j=i;j>=0;j--)
if(strcmp(triada[j],"000")==0) strcat(out,"0");
else if(strcmp(triada[j],"001")==0) strcat(out,"1");
else if(strcmp(triada[j],"010")==0) strcat(out,"2");
else if(strcmp(triada[j],"011")==0) strcat(out,"3");
else if(strcmp(triada[j],"100")==0) strcat(out,"4");
else if(strcmp(triada[j],"101")==0) strcat(out,"5");
else if(strcmp(triada[j],"110")==0) strcat(out,"6");
else if(strcmp(triada[j],"111")==0) strcat(out,"7");
strcat(out,".");
i=0;
p=strchr(in,'.')+1;