Search:

Type: Posts; User: copeg

Search: Search took 0.11 seconds.

  1. Replies
    38
    Views
    8,401

    [SOLVED] Re: Char Array Increment + 1

    You do not need to create any array. Just use the ascii int values: get the character of interest in the string, cast it to an int, increment it's value, cast back to a char.
  2. Replies
    38
    Views
    8,401

    [SOLVED] Re: Char Array Increment + 1

    A note on your approach - it is redundant to use an array to get the next index of that array if you wish to increment a character value. characters can be cast to integers, the value of which is the...
Results 1 to 2 of 2