All,
I'm trying to understand the usage of the following:
struct out
{
char msg<>;
};
If I try (intentionally):
struct out result;
result.msg=1;
I got the following:
error: incompatible types when assigning to type ‘struct <anonymous>’ from type ‘int’
I searched struct anonymous but all queries talk about something related to "Union". I'm really lost, appreciate if someone can clarify me the concept.
Thank you!
PS. I need it to return some message from an RPC Stateless Server.