digitalmars.D.learn - auto arr = new int[10];
- %u (5/5) Apr 16 2011 is there any different b/w:
- Piotr Szturmaj (3/8) Apr 16 2011 arr is static array of int with ten elements
is there any different b/w: auto arr = new int[10]; and int[10] arr; ?
Apr 16 2011
%u wrote:is there any different b/w: auto arr = new int[10];arr is dynamic array of int with ten elementsand int[10] arr; ?arr is static array of int with ten elements
Apr 16 2011