Hacker News new | ask | show | jobs
by fatty_patty89 17 days ago
there's no array type in c
2 comments

Yes it does. It just decays to a pointer at the slightest touch.
There are differences. E.g. va_xxx functionality may be implemented either with a pointer or an array. The difference becomes visible if you try to pass a va_list to another variadic function and then extract it later with va_arg. About half of compilers will happily do that, and another half will refuse to compile the naive version. (There's a more sophisticated proper way.)

https://stackoverflow.com/questions/79897621

There is a big difference between:

struct A { int size; char data[]; }

struct B { int size; char *data; }