#include<stdio.h>
int main()
{
FILE *point;
char others[35];
int indexer,count;
strcpy(others,"Additional lines.");
point = fopen("tenlines.txt","a"); /* open for appending */
for (count = 1;count <= 10;count++)
{
for (indexer = 0;others[indexer];indexer++)
{
putc(others[indexer],point); /* output a single character */
putc('\n',point); /* output a linefeed */
}
}
fclose(point);
getchar();
}
plz i cant understand the inner for loop in above programme...
[That indexer one]...
i hav already studied about fopen and other I/O functions...
but only cant understand the inner loop....
plzzzzzzzzzzzzzzzzzzzzzzzzz need ur help....
plz temme the full mechanism of the inner loop.....
plz
help
plzzzzz.......][/