Adding File

This commit is contained in:
gupta-ashu01
2020-08-24 12:02:02 +05:30
committed by GitHub
parent a25268e6f5
commit ce7cec255d

View File

@@ -0,0 +1,11 @@
package com.baeldung.array.arraystoreexception;
public class ArrayStoreExampleCE {
public static void main(String[] args) {
//String array[] = new String[5]; //This will lead to compile-time error at line-8 when uncommented
//array[0] = 2;
}
}