How to make an array return type from C function?

Functions can’t return arrays in C.

However, they can return structs. And structs can contain arrays…

Leave a Comment