+ 5
What is the meaning of statement ?
“All characters that appear within a comment are ignored by the Java compiler. ”
3 ответов
+ 5
comments are denoted by
/*comment*/
line1:System.out.print("hi"); outputs hi
line2:/*System.out.print("hi");*/
no output since everything is in a comment
+ 3
thanks @NG brains...😊
+ 2
it is a type of characters which are compiled with compiler and generates the following results