First, you should avoid spaces in Linux file names. So your example should be FILE *fp= fopen("that_file","r"); having spaces (or even control characters like newline) in file names is bad taste.
And under Linux, a file descriptor (which is not a FILE* handle!) is a small integer, which is handled by the kernel: within the kernel, processes have a table of open files, and their application code refer (using system calls like open and read etc) to these files by their file descriptor. The standard C library manage buffering and file descriptors (so inside the FILE data structure there are buffers and a file descriptor).
So if you have one process reading a file, and another writing it at the same time (this is bad practice), the reading process is able to read all the available bytes.
So you don't need to "update" your fp but your code is crappy (because of lack of synchronization between reading & writing process).