Advertisement
JeffGrigg

Test3 - Print new char array

Dec 22nd, 2018
544
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.16 KB | None | 0 0
  1. public class Test3 {
  2.     public static void main(String[] args) {
  3.         byte b1 = 5;
  4.         char[] c1 = new char[2];
  5.         System.out.println(c1);
  6.     }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement