Hi guys
I just want to know how I can return more than one value in a function.
For example I send tow integers to my function and then I do some operation on them then I want to send them back again. It means in my last line of my function I have:
return a, b;
Is it possible? Why its not working? And if its possible how I can get them back in my main function?
I just want to know how I can return more than one value in a function.
For example I send tow integers to my function and then I do some operation on them then I want to send them back again. It means in my last line of my function I have:
return a, b;
Is it possible? Why its not working? And if its possible how I can get them back in my main function?
Comment