up vote 14 down vote favorite
2
share [g+] share [fb]

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);
link|improve this question
BTW, should it be a comment? I'm confused. – Javier Badia Mar 5 '10 at 3:04
3  
I think this should be community wiki. – Johannes Schaub - litb Mar 5 '10 at 3:05
2  
I once asked "what's wrong" sort of question as a "c++ quiz" using this weirdness on stackoverflow (of course, replacing "\" by the trigraph "// what the heck ??/"). And the question was downvoted heavily. People didn't like how they were fooled :) – Johannes Schaub - litb Mar 5 '10 at 3:07
1  
@Javier:yes -- line splicing happens in phase 2 of translation, replacement of a comment by a space happens in phase 3. – Jerry Coffin Mar 5 '10 at 3:27
2  
The trigraph question is tricky, personally I compile with trigraphs disabled so I am perfectly fine with my IDE not recognizing them. – Matthieu M. Mar 5 '10 at 7:14
show 1 more comment
feedback

10 Answers

up vote 1 down vote accepted

emacs 22.3.1: No to both, sadly

link|improve this answer
1  
The same for my Emacs 23.1.1 Should we file a bug report? – Sergey Dymchenko Mar 5 '10 at 3:56
Yes. Please do. – cschol Mar 5 '10 at 4:02
1  
<flamebait>That's why you have to switch to vim</flamebait> – qrdl Mar 5 '10 at 8:03
feedback

VC6, Visual Studio 2003, 2005, 2008, 2010 all do.

link|improve this answer
Haha, VS beats emacs :) – Lucas Mar 11 '10 at 0:02
feedback

Slickedit - yes

KDevelop - yes

QT Creator - No

CodeBlocks - No

link|improve this answer
feedback

vim 7.2 sees it as a comment, and gcc 3.4.3 compiles it as a comment.

link|improve this answer
The install of vim I have (7.2, Ubuntu 10.04) sees the first one correctly, but misses on the trigraph. – Caleb Huitt - cjhuitt Sep 21 '10 at 17:55
feedback

Yes, TextMate does it.

link|improve this answer
feedback

Kate (3.4) only highlights the first test, fails hilighting the second test

// hello folks \
int a = 0;

// hello folks ??/
int a = 0;
link|improve this answer
feedback

From http://forums.topcoder.com/?module=Thread&threadID=666932

Quick note on which popular editors show this as a comment : vim - yes emacs - no :) kate - no gedit - yes netbeans - yes kwrite - yes

link|improve this answer
feedback

XCode and CodeWarrior handle it properly. (But not the trigraph, lol.)

link|improve this answer
feedback

Xcode sees the first as a comment, the second not.

link|improve this answer
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:

r1 = dm(pPointer1);      // Store pointer to r0\
r0 = lshift r1 by -16;   // Not highlighted as a comment but DOES NOT EXECUTE.
dm(i0,m1) = r0;
dm(i0,m1) = r1;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.