KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q47625: Trace Stops on Line Following a Loop Before Loop Is Done

Article: Q47625
Product(s): See article
Version(s): 2.20 2.30 | 2.20 2.30
Operating System(s): MS-DOS | OS/2
Keyword(s): ENDUSER | S_C | mspl13_basic
Last Modified: 15-SEP-1989

In trace mode, CodeView stops on the line following a loop that does
not have open and close braces ({}), before the loop is done.

When tracing through a loop without the braces ({}), the trace stops
on the statement immediately following the loop each time through the
loop, giving the impression that the statement is being executed
inside the loop. Actual program execution is correct.

The following program was compiled with C Version 5.10 with the
command line

   cl /Zi /Od program.c

and run using CodeView 2.20, as follows:

    cv program.exe

The trace stops at the printf each time through the loop even though
printf is not part of the loop, but does not print anything until the
end of the program.

Sample Program
--------------

#include <stdio.h>

void main(void)
{
    int i;
    int count;

    count = 0;

    for(i=0;i<3;i++)
        if(i)
            count++;

    printf("Count is %d\n",count);
}

THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Copyright Microsoft Corporation 1986-2002.