Please explain the compiler behaviour in the below code snippet. Consider the text file contains the following text TOBE and the corresponding byte values are 84, 79, 66, 69
for(int i=0;i<4;i++){
byte inByte=(byte) buffInputFile.read();
system.out.println(inByte);
}
When i run this snippet i get the following output 84 79 66 69
But when i dubug at the for loop and step inside. The buffInputFile.read() shows me 84 at first and when assigned to inByte it is 79. and the output i get is
79,66,69,13 (13 is the carriage return).