mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-15 15:08:52 +00:00
11 lines
133 B
C
11 lines
133 B
C
int main() {
|
|
int a[10];
|
|
int *p = a;
|
|
|
|
for (int i = 0; i < 10; i++) {
|
|
*(p++) = i;
|
|
}
|
|
|
|
return a[5] == 5;
|
|
}
|