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

Search:

Type: Posts; User: VictorN

Search: Search took 1.10 seconds.

  1. Replies
    22
    Views
    22,886

    Re: Please find the bug in the c++ code

    I won't... until you will have debugged it.:cool:
  2. Replies
    22
    Views
    22,886

    Re: Please find the bug in the c++ code

    Arrays in C are indexed from zero, not from 1.
    So int A[9][2]; means that there only
    A[m][0] = k;
    A[m][1] = k;are allowed!
  3. Replies
    22
    Views
    22,886

    Re: Please find the bug in the c++ code

    As Paul pointed out you have to debug your code to find the bug!

    Note also that noone will check your code until you will fromat it properly: with indentations and white spaces between operands....
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured