Search:

Type: Posts; User: Adak

Search: Search took 0.06 seconds.

  1. Replies
    15
    Views
    4,008

    I'm not able to tell, frankly. My program would...

    I'm not able to tell, frankly. My program would need some adjusting to handle creating 1000 files, since that exceeds the range of a char, that it uses for creating it's file names.

    If the data...
  2. Replies
    15
    Views
    4,008

    That "press any key to continue" message, is from...

    That "press any key to continue" message, is from your console window, not the program.

    The program message is "press enter when ready", and if you've REM'd out the getchar line, then you will not...
  3. Replies
    15
    Views
    4,008

    Remove or REM out the i=getchar() line of code....

    Remove or REM out the i=getchar() line of code. Second from the last line. By REM I mean "REMark" by putting either a // in front of the first letter of the line, or by surrounding the line, like so:...
  4. Replies
    15
    Views
    4,008

    As it turns out, this should be fast, all around....

    As it turns out, this should be fast, all around. It appears the 5 letters per row data, is a 5 letter permutation list. Since I didn't have enough sample data to work with, I generated my own list,...
  5. Replies
    15
    Views
    4,008

    Only 200 per minute with a bat file? You're in...

    Only 200 per minute with a bat file? You're in for a VERY pleasant surprise with C.

    About the system you'll be running this on:

    cpu is?:

    Amount of memory?:

    Your compiler is?:
  6. Replies
    15
    Views
    4,008

    Strings in any language are not the fastest way...

    Strings in any language are not the fastest way to work with letters. The fastest way would be simply by using blocks of a char array, and forget mucking about with the end of string char and...
Results 1 to 6 of 6