Is it possible to return multiple values? For example:
umafuncao()
{
int x = 1, y = 2;
return x,y;
}
void main()
{
int a, b;
a, b = umafuncao();
}
I'm asking this question, because I built a code using this structure for a...
asked on
03.11.2015 / 14:25