You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
189 B
12 lines
189 B
7 months ago
|
int test(int a, int b) {
|
||
|
int d[1][2];
|
||
|
int c[10];
|
||
|
c[0.1] = 0;
|
||
|
return 1;
|
||
|
}
|
||
|
int main() {
|
||
|
int c = test(1,1);
|
||
|
return 0;
|
||
|
}
|
||
|
// Array index not int 数组下标不是整数
|