I came across a different way of returning values and got excited. What does it mean exactly?
If I had to guess, I would say it means something along the line of... if z < 0, then add z and y, else return z?
int ffunction(int x, int y)
{
int z = x % y;
return z < 0 ? z + y : z;
}