Цитата: запись байтами не работает
Цитата: "rb"
Открыть файл для чтения.
Цитата: char temp[10] = formatic ( getcolor(1142+i, 645, W_Kib) );
Это всё неправильно.
CODE:string path = pathfolder()+"TColor.txt";
if (fopen (path, "wb")!=0)
{
char temp[10];
for ( int i=0; i<=70; i=i+10)
{
strcpy(#temp[0], format(getcolor(1142+i, 645)));
fwriteb(#temp[0], size(#temp[0]));
fwrite(ENDL);
}
fclose();
start(path);
} |