Does your editor/ide highlight that a++; in this C/C++ code as part of a comment?
int a=1;
//some comment \
a++;
printf("%d\n",a);
And what about this?
int a=1;
//some comment ??/
a++;
printf("%d\n",a);
|
Does your editor/ide highlight that
And what about this?
| |||||||||||||||||||
feedback
|
|
emacs 22.3.1: No to both, sadly | |||||||||||
feedback
|
|
VC6, Visual Studio 2003, 2005, 2008, 2010 all do. | |||
|
feedback
|
|
vim 7.2 sees it as a comment, and gcc 3.4.3 compiles it as a comment. | ||||
feedback
|
|
Kate (3.4) only highlights the first test, fails hilighting the second test
| ||||
|
feedback
|
|
From http://forums.topcoder.com/?module=Thread&threadID=666932
| |||
|
feedback
|
|
Good question! I was going to ask a question about this until I found this one. The Visual-DSP++ IDE from Analog Devices does not highlight either comment when writing in assembly or C. For example:
| ||||
|
feedback
|