#include "stdlib.h" #include "stdio.h" struct osoba { char NazwaProd[50]; int Ilosc; float Cena; float Wartosc; } ; void Zapisz(char *plik, osoba *o) { FILE *p = fopen(plik, "w"); fwrite((void *) o, sizeof(osoba), 1, p); fclose(p); } int main() { osoba o1 = {"ABC", 123, 24.5, 0}; Zapisz("plik.txt", &o1); printf("Done\n"); system("pause"); }