linux打印数组

2024-02-15 17:12:18

```c

int array[] = {, , , , };

for(int i=; i<; i++)

printf("%d ", array[i]);

```