0
Please can anyone explain to me when a single or multi line is said to be nested
It's under the chapter titled comments
3 Respuestas
+ 2
Please mention your programming language
0
/*
/* System.out.print(); */
System.out.print();
// the above line will not be commented
*/
/*
// System.out.print();
*/
You cannot have a multi line comment nested inside a multi line comment.
0
tanxx a lot for the answers, I really appreciate them