mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-14 22:38:46 +00:00
14 lines
159 B
C
14 lines
159 B
C
int* foo(int a[10]){
|
|
return a;
|
|
}
|
|
|
|
int main() {
|
|
int a[10];
|
|
|
|
for (int i = 0; i < 10; i++) {
|
|
(foo(a))[i] = i;
|
|
}
|
|
|
|
return a[5] == 5;
|
|
}
|