If I define a structure like:
struct tiny { long t; };
will be processed as long in terms of function arguments and similarly, in the example there will be a parameter:
void myfunc(tiny x) { ... }
handled as a long parameter, actually pushing it onto the stack?
So, essentially, is a tiny structure just like its only member?
thanks
c ++ struct
litro
source share