Creating an Array: Difference between revisions

m
→‎{{header|C++}}: Change to system stack link
(→‎{{header|C++}}: Works with any compiler compliant with any version of the C++ standard)
m (→‎{{header|C++}}: Change to system stack link)
Line 135:
}
 
Using fixed (i.e. [[System stack|Stack]]) memory:
int myArray2[10] = { 1, 2, 0}; /* 3..9 := 0 */
 
Anonymous user