Search:

Type: Posts; User: syedbhai

Search: Search took 0.13 seconds.

  1. Thread: Array

    by syedbhai
    Replies
    12
    Views
    1,151

    [SOLVED] Re: Array

    Hello.
    Q). What's the difference between String[4][1] and String[4]?
    A). String[4] refers to 5th element in a one dimensional array.
    String[4][1] refers to 2nd element of 5th row...
  2. Thread: Array

    by syedbhai
    Replies
    12
    Views
    1,151

    [SOLVED] Re: Array

    Hello.
    Where is the starting point of execution in your program?
    Probably you did not invoke the method that initializes the array.
    So before accessing array please initialize it first.
    ...
Results 1 to 2 of 2