Que tal asi?
Código C:
Ver original#include <stdio.h>
typedef struct
{
int a;
char * fdw;
} Testing;
Testing test();
int main()
{
printf("%d y %s\n", test
().
a, test
().
fdw);
return 0;
}
Testing test()
{
Testing test;
test.a = 1;
test.fdw = "foros del web";
return test;
}
no se me ocurre otra forma :P
EDIT: no habia entendido lo que querias, no se si sea posible, pero si hay alguna forma de emular seria interesante