Greetings,
I need to compelete a string with number of blanks that is defined in the following way...
char line[500];
while (f_in.getline(line, sizeof(line)))
f_out << line << endl;;
If the line that is read from a file is only 50 characters, I am creating a new file with a total of 500 characters, so I have to add 450 blanks to the variable char << line << .
Thank you for help
Adrian