Apr 14 2010 11:58 AM 5775 8 Return Multiple Values from Function vijay.karumuri How to return multiple values in C language function? Arpita Mishra Aug 4th, 2012 Multiple values can be returned from a function by using call by address i.e. pointers intelligently. jbode Profile Answers by jbode Questions by jbode Jan 3rd, 2012 Strictly speaking, a C function can only *return* a single value; you cant write something like "a,b,c=f();". However, you can write to multiple function parameters in addition to returning a value (... Answer Question Select Best Answer
Apr 14 2010 11:58 AM 5775 8 Return Multiple Values from Function vijay.karumuri How to return multiple values in C language function? Arpita Mishra Aug 4th, 2012 Multiple values can be returned from a function by using call by address i.e. pointers intelligently. jbode Profile Answers by jbode Questions by jbode Jan 3rd, 2012 Strictly speaking, a C function can only *return* a single value; you cant write something like "a,b,c=f();". However, you can write to multiple function parameters in addition to returning a value (... Answer Question Select Best Answer
Arpita Mishra Aug 4th, 2012 Multiple values can be returned from a function by using call by address i.e. pointers intelligently.
jbode Profile Answers by jbode Questions by jbode Jan 3rd, 2012 Strictly speaking, a C function can only *return* a single value; you cant write something like "a,b,c=f();". However, you can write to multiple function parameters in addition to returning a value (...