The reason for this is that the Java compiler parses the unicode character \u000d as a new line and gets transformed into:
public class Testing {
public static void main(String[] args)
{
// the line below this gives an output
// \u000d
System.out.println("comment executed");
}
}
0 Comments
Please Login to Comment Here