| cwrite.c | |
|---|---|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #include<stdio.h>
#include <stdlib.h>
int main() {
FILE *d;
d = fopen("rand.txt", "w");
if (d == NULL) exit(1);
int i;
for (i=0; i<10; i++)
fprintf(d, "%d ", 65 + (rand() % 25));
fclose(d);
return 0;
}
|