5 Nisan 2023 Çarşamba

Binary Dosya oluşturma c programlama

Binary Dosya oluşturma  txt dosyasından farklı biçimde dosya oluşturma.

 #include<stdio.h>


struct rec

{

int x,y,z;

};


int main()

{

int sayac;

FILE *bptr;

struct rec record;

bptr = fopen("test.bin","wb");

if(!bptr)

{

printf("Dosya cilamaiyor");

return 1;

}

for(sayac=1; sayac <=10; sayac++)

{

record.x = sayac;

fwrite (&record , sizeof(struct rec),1, bptr);

}

fclose(bptr);

return 0;

}


Hiç yorum yok:

Yorum Gönder

Her yorum bilgidir. Araştırmaya devam...