Computer Science, asked by sundeepdas65748, 3 months ago

What happens if you include comments within the source code of program without using the comment character combinations '/*' and '*/' ?

Answers

Answered by aarifatrichy
3

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:

Similar questions