CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: GCDEF

Search: Search took 0.17 seconds.

  1. Replies
    8
    Views
    2,465

    Re: Noob Q 2D array processing

    I don't know how much more clearly to explain it. You set c to zero, then execute the loop while c is not zero. Of course it won't execute.
  2. Replies
    8
    Views
    2,465

    Re: Noob Q 2D array processing

    for (int c = 0 ; c != '\0'...

    What do you think that's going to do? You set c to zero, then execute the loop as long as c is not equal zero.
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured