#include int main(void){ int nr=64; FILE *f; f=fopen("andmed.dat", "wb"); fwrite(&nr, sizeof(int), 1, f); fclose(f); }