7 lines
129 B
Text
7 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);
|
||
|
|
}
|