Microsoft KB Archive/41436: Difference between revisions

From BetaArchive Wiki
m (Text replacement - "<" to "<")
m (X010 moved page Microsoft KB Archive/Q41436 to Microsoft KB Archive/41436 without leaving a redirect: Text replacement - "Microsoft KB Archive/Q" to "Microsoft KB Archive/")
 
(One intermediate revision by the same user not shown)
Line 17: Line 17:
main() { int i, I, j;
main() { int i, I, j;


for( i=0; i<20; i++ ) for( I=20; I&gt;0; –I ) j = i + I; }
for( i=0; i<20; i++ ) for( I=20; I>0; –I ) j = i + I; }


Copyright Microsoft Corporation 1989.
Copyright Microsoft Corporation 1989.

Latest revision as of 19:22, 12 August 2020

Variables in the Watch Window Map to Uppercase PSS ID Number: Q41436 Article last modified on 02-28-1989 PSS database name: S_QuickC

1.01

MS-DOS

Summary:

Microsoft QuickC Version 1.01 does not discriminate between uppercase and lowercase variables in the watch window.

Microsoft has confirmed this to be a problem in Version 1.01. This problem was corrected in QuickC Version 2.00.

More Information:

The following example describes the problem (by placing the variables i and I in the watch window, both the variables get updated as variable I changes):

main() { int i, I, j;

for( i=0; i<20; i++ ) for( I=20; I>0; –I ) j = i + I; }

Copyright Microsoft Corporation 1989.