Declaring Arrays
Canít specify the length in a declaration
int test [] = new int [100]; // Okay
int test2 [100]; // No good
int test3 [100]=new int [100]; // No good
Previous slide
Next slide
Back to first slide
View graphic version