ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
tip   SiteMap shows list of All Categories in this site.
Google
 
Categories >> Code-Snippets >> Programming-Code >> C-Code
 
 
 
Question
How to return multiple values from a function?
 Question Submitted By :: Solidcube
I also faced this Question!!     Rank Answer Posted By  
 
Answer
you can return multiple values from the function by using 
mechanism  called "call-by-reference".
for example:
  
void main()
 {
    int area,*circumference;
    area=function(area,circumference);
    cout<<"the area is "<<area;
    cout<<"the circumference is"<<circumference;
 }
int function(int a,int *b)
 {
    a=12;
    int temp=a*3;
    b=&temp;
    return a;
 }

// this is just an example............


// you can also use array and return the adress of the 
array in the main and can use to traverse the entire array 
and return multiple values from function.
 
0
Splurgeop
 
View All Answers
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com