C-Beispiel-big.c
Version vom 14. Juni 2020, 06:35 Uhr von Hamatoma (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „= Links = * C * C-Beispiel-big.c = big.c (schnell Platte füllen) = <pre>#include <stdio.h> #include <stdlib.h> int main(int count, char** arg){ FI…“)
Links[Bearbeiten]
big.c (schnell Platte füllen)[Bearbeiten]
#include <stdio.h> #include <stdlib.h> int main(int count, char** arg){ FILE* file = fopen("big.data", "w"); int size = 0x10000 * 128; void* data = calloc(size, 1); int mByte = 0; while (fwrite(data, size, 1, file) > 0){ mByte += size / 1024 / 1024; printf("%d MByte\n", mByte); } return 0; }