0
why multi line comments shows no output?
what are comments?
4 ответов
+ 3
Comments are like notes for coding, and are ignored by the compiler.
+ 2
Comments are ignored by the compilator. They are used to leave notes for ourselves and other developers to understand what the code does, and also allow you to dummy out a chunk of code you want to be able to put back easily for example.
+ 1
//comments are use to make code readable by humans
0
All comments are ignored by the complier, they're only visible when you're looking at the bare code.