I have been searching for the answer for this for about an hour and I am very new to C. I am getting the warning "left-hand operand of comma expression has no affect" when referring to this line
return studio, one, two;
The statement is not returning variables one or two to my knowledge from what my print function is showing. Is this the correct way to return multiple variables in C or am I doing it wrong? This is the first time I have had to do this and we didn't discuss this in my class. Apologizes in advance for (I'm sure) a very simple fix.