Hi there, I'm not sure if the term's actually "Array Addition".
I'm trying to understand what does the following line do:
int var[2+1] = {2,1}
How is that different from int var[3]?
I've been using Java for several years, so I'd appreciate if explained using Java-friendly words ;-)
Thanks for your time.
-Nushio
Edit: Thousands of thanks to everyone who helped me out, Occam's Razor applies here.