import java.io.*;
class file2
{
public static void main(String args[]) throws IOException
{
int b;
b='A';
System.out.write(b);
System.out.write('\n');
}
}
will anyone can tell that when i don't write System.out.write('\n'); then nothing comes in output. but after adding this statement 'A' got printed, why is it so ? secondly, i have changed this 'A' to int, then why even after that 'A' is printed. 65 must be there. why ?