Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#FFcccc
/* comment with end comment marker unintentionally omitted
...
security_critical_function();
/* some other comment */

...

Code Block
bgColor#FFcccc
// */          // comment, not syntax error
...
f = g/**//h;   // equivalent to f = g / h;
...
//\
i();           // part of a two-line comment
...
/\
/ j();         // part of a two-line comment
...
/*//*/ l();    // equivalent to l();
...
m = n//**/o
+ p;           // equivalent to m = n + p;
...
a = b //*divisor:*/c
+d;            // interpreted as a = b/c +d; in c90 compiler and a = b+d; in c99 compiler

...