Is there anyway we can return 2 values from a called function
example
Code:
float xxxx(float a, float b, float c, float d)
{///
///
///
}

void xxx()
{
int e,f,g,h;
////
////
xxx(e,f,g,h);
}
so if I want for example a+b and c+d, can i return those 2 answer? I don't think its possible since I am new into C programming