Search:

Type: Posts; User: camel-man

Search: Search took 0.18 seconds.

  1. Replies
    8
    Views
    1,021

    Re: Storing a string in a 2D array

    You should make a method that takes those parameters. Then you can go to that row and column and put in the letter you want manually
  2. Replies
    8
    Views
    1,021

    Re: Storing a string in a 2D array

    Well, you arent printing anything... you're just printing a new line. you should print out the actual image slot..


    for (int i = 0; i < column; i++)
    {
    for (int j = 0; j < row;...
  3. Replies
    8
    Views
    1,021

    Re: Storing a string in a 2D array

    What is your other problem? You should be able to accomplish all that you listed with this 2d char array
  4. Replies
    8
    Views
    1,021

    Re: Storing a string in a 2D array

    How about a 2d array of characters. That way you could say image[i][j] = '0';
Results 1 to 4 of 4