What does EOF stand for in C language?
EOF is a macro defined in C language, which stands for “end of file”. In C language, when performing file input/output operations, EOF can be used to indicate the end of a file. The value of EOF is typically -1. When the end of a file is reached during reading, EOF is returned so that the program can determine if the file has been fully read.