I'm trying to understand some code dealing with low-level I/O. I'm unfamiliar of a good forum for C related questions, but if you have any please let me know as well. The code essentially passed a pointer to the contents of a file. It reads until the buffer is full and the stores the data in a static variable. This process is completed in a while loop until all of the data is entered. You'll notice some common C library functions labeled ft_SOMECLIBRARYRECREATE just assume that those functions on. I've recreated similar functions that mimic the C library in order to better understand how they work and to gain personal knowledge along the way. My main concern is the following when looking at some reference material. With the given code below, isn't it true that the lines after the while loop will not be reached? If they are reached can you explain to me why? Thank you!