+ 5
What is the meaning of statement ?
âAll characters that appear within a comment are ignored by the Java compiler. â
3 RĂ©ponses
+ 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