с lenguage , не создает файл #include <stdio.h> #include <math.h> #include <time.h> #include <string.h> int main() { int x=14,y=88,z=52; FILE *lastdance=fopen("last.txt","w"); fwrite(&x,sizeof(int),1,lastdance); fwrite(&y,sizeof(int),1,lastdance); fwrite(&z,sizeof(int),1,lastdance); fclose(lastdance); return 0; } Код #include <stdio.h> #include <math.h> #include <time.h> #include <string.h> int main() { int x=14,y=88,z=52; FILE *lastdance=fopen("last.txt","w"); fwrite(&x,sizeof(int),1,lastdance); fwrite(&y,sizeof(int),1,lastdance); fwrite(&z,sizeof(int),1,lastdance); fclose(lastdance); return 0; }