Jumping off the end of a file lseek allows you to set the current position to locations after the end of the file. For example, lseek(fd, 100, SEEK_END) moves the position 100 bytes past the end of a file. Now I) What happens if we read data after the end of a file? ii) What happens if we write data after the end of a file?