This repository has been archived on 2026-07-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
college-work/Задания по C и C++/с (2024)/С(2024)/20.c
T

14 lines
312 B
C

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main() {
FILE *fn = fopen("netext2.bin", "wb");
float n;
for (int i = 1; i <= 100; i++) {
n = -49.99 + ((float)rand()/(float)RAND_MAX) * 101.98;
fwrite(&n, sizeof(float), 1, fn);
}
fclose(fn);
return 0;
}