RosettaCodeData/Task/Array-concatenation/Little/array-concatenation.little
2023-07-01 13:44:08 -04:00

6 lines
129 B
Text

void main() {
int a[] = {0, 1, 2, 3, 4};
int b[] = {5, 6, 7, 8, 9};
int c[] = {(expand)a, (expand)b};
puts(c);
}