First page Back Continue Last page Graphics
// a small C++ program
C++ style comments from // to end of line.
/* ... */ C style comments are also o.k. And they go for multi-lines.
Another way to remove lots of lines containing both types of comments:
- #IFDEF RSB_01
- /* other stuff, some containing comments */ Y=0;
- X = 12;
- // of either style
- #ENDIF