I have a function named showcontent. I have around 5,000 lines that I am reading in from a file. When I display the content it's formatting correctly only that I am missing a huge chunk of information. It's only displaying data from V to Z, and I am not sure where A to Z went. Is there a size limit as to how much information can be displayed on the screen to the end user ?? or do I have a syntax error somewhere....?
The amount of information your console can show is limited. It's not that the information is missing, it's that much of it has "scrolled off" of the console buffer.
Try writing to another file (rather than, or in addition to, the console) and inspecting its contents to verify that you aren't missing information.