59. What is the problem with the following code segment? Peter Vegas C - Predict the Output 1 while ((fgets(receiving array,50,file_ptr)) != EOF);while ((fgets(receiving array,50,file_ptr)) != EOF); Click here to view the answer Answer & Explanation: fgets returns a pointer. So the correct end of file check is checking for != NULL. Peter Vegas