Search:

Type: Posts; User: whiteflags

Search: Search took 0.10 seconds.

  1. Replies
    8
    Views
    4,612

    Nope, now the cause is something totally...

    Nope, now the cause is something totally different. Your loop condition is completely wrong: the valid range of indexes for any array is from 0 to size - 1 inclusive. So, your loops will have to work...
  2. Replies
    8
    Views
    4,612

    Well, like I said, string is C-string, contained....

    Well, like I said, string is C-string, contained. The goal of string was to replace C strings, but C++ as a language maintained C strings at the same time, so that it could compile C programs.

    But...
  3. Replies
    8
    Views
    4,612

    Symptoms of bigger data structure problems. An...

    Symptoms of bigger data structure problems. An array of 1 really isn't an array at all.



    char *gam[3][8]; // This is for storing SCALES, This size for now.
    char *sual[7]; // This is...
Results 1 to 3 of 3