mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
12 lines
154 B
C++
12 lines
154 B
C++
|
|
void foo()
|
||
|
|
{
|
||
|
|
int arr[2] = {1,2};
|
||
|
|
arr[1] = 0;
|
||
|
|
|
||
|
|
int arr2[] = {5,6};
|
||
|
|
arr2[0] = 11;
|
||
|
|
|
||
|
|
int arr3[1][2] = {{3,4}};
|
||
|
|
arr3[0][0] = 72;
|
||
|
|
}
|