Hacker News new | ask | show | jobs
by colejohnson66 29 days ago
Yes it does. It just decays to a pointer at the slightest touch.
1 comments

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