Article ID: 149615
Article Last Modified on 7/5/2005
void main(void)
{
_asm { int 3; } // The closing curly brace is ignored because it's
// part of the assembly comment line
_asm { // This code works because no valid code follows
int 3; // the semicolon comment specifier
}
_asm { int 3 } // This also works and is valid code
}
Additional query words: 9.00 9.10 9.20 10.00 10.10
Keywords: kbtshoot kbprb kbcompiler KB149615