Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- void main() {
- FILE *file = fopen("c:\\users\\peterhe\\desktop\\c\\file", "w+b");
- int in;
- while(0 == 0) {
- in = rand();
- fwrite(&in, sizeof(in), 1, file);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment