Please explain the below code
public class Example{
public static void main(String[] args)
{
int i[]={9};
System.out.println("\700");
}
}
Please don't say me that the octal value should be less than 377. I know it already but when I run the above program, I get the output as 80. I want to know why its happening so?
Please give a clear explanation. Thank you