Search:

Type: Posts; User: Breebo

Search: Search took 0.00 seconds.

  1. Thread: File Length

    by Breebo
    Replies
    3
    Views
    1,164

    File Length

    How do you determine the length of a file without manually traversing it from the beginning and looking for eof?
  2. Replies
    9
    Views
    981

    while (!kbhit()); should also work, but I believe...

    while (!kbhit()); should also work, but I believe it's nonstandard as well.

    BTW getch() will continue if the user presses any key at all. To check for enter being pressed, try:

    while (getch()...
Results 1 to 2 of 2