Saved Bookmarks
| 1. |
What happens if you include comments within the source code of program without using the comment character combinations '/*' and '*/' ? |
|
Answer» Answer: If you include comments within the source code of your programs without using the comment CHARACTERS combinations // , /* or */ , the COMPILER will take them as if they were C++ expressions, most likely causing one or SEVERAL error messages when you compile it. Explanation: |
|