Unix C

for an other file
#include
#include
#include
void writefile(char *);
int main()
{
int N;
FILE *inf;
int i;
inf = fopen("infile.txt", "r");
/* Now let us read the number from a file */
fscanf(inf, "%d", &N);
for(i = 0; i < N; i++)
writefile("WWW");
printf("
");
fclose(inf);
return(0);
}
void writefile(char *str)
{
FILE *outf;
int i;
outf = fopen("outfile.txt", "a");
/* Now let us write to the file */
fprintf(outf, "
%s", str);
fclose(outf);
}