public class Sample { public static void main(String[] args) { // java compiler ignores the comment System.out.println("Java programmer"); /* * comments make code easily understandable */ } } OUTPUT: Java programmer
public class Sample { public static void main(String[] args) { // java compiler ignores the comment System.out.println("Java programmer"); /* * comments make code easily understandable */ } } OUTPUT: Java programmer