top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What does EOF signify? What are the shortcuts used for EOF?

+4 votes
165 views
What does EOF signify? What are the shortcuts used for EOF?
posted Dec 6, 2013 by Prachi Agarwal

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

EOF signifies the end of file, unix based OS deals all devices as a file so STDIN/STDOUT is also a file and EOF applies over there also.

EOF can be represented as CTRL+D and CTRL+Z you can also do the same by closing the file i.e. fclose in C if you are reading from file.

answer Dec 6, 2013 by Salil Agrawal
...