> Is there any specific reason for having the extension "Naming > Results" implemented only for C++, but not plain C? In C++, copying into the result often has significant costs (copying constructor), which is reduced with that extension. For C, no such need exists. Regards, Martin