Arrays are generic, but of course C doen't provide generic functions.
You can generically copy arrays [1], index them, iterate them, compute their size. But that's not the point, the point is that you can instantiate them for any (complete) T.
[1] well, C is weird, so you first need to wrap them in a struct.
Which generic operations does the language provide?