fork download
  1. class pk
  2. {
  3. public static void main(String args[])
  4. {char ch,ch1;
  5. ch=88;
  6. ch1++;
  7. System.out.println(ch+ " " +ch1);
  8. }
  9.  
  10.  
  11. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:6: error: variable ch1 might not have been initialized
		ch1++;
		^
1 error
stdout
Standard output is empty