There are several ways to do a compile-time initialization of arrays. All of the following are valid ways EXCEPT ____.
a. int [ ] anArray = new int [10 ] {100, 100, 100};
b. int [ ] anArray = {100, 100, 100};
c. int [ ] anArray = new int [3 ] {100, 100, 100};
d. int [ ] anArray = new int [ ] {100, 100, 100};