Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Can u return two values using return keyword? If yes, how?
If no, why?

Answers were Sorted based on User's Feedback



Can u return two values using return keyword? If yes, how? If no, why?..

Answer / c.saranya

no. because return keyword return only one value.that ia 0
or 1.

Is This Answer Correct ?    15 Yes 4 No

Can u return two values using return keyword? If yes, how? If no, why?..

Answer / pancuz

yes we can return two or more values from a function using
return keyword...

Use structure...return type of the function will b 'struct'
and v ll store value in struct type.

Is This Answer Correct ?    10 Yes 2 No

Can u return two values using return keyword? If yes, how? If no, why?..

Answer / abhijit roy

in c a function can only written one value
the return value could be of any data type

Is This Answer Correct ?    10 Yes 4 No

Can u return two values using return keyword? If yes, how? If no, why?..

Answer / vignesh1988i

sorryt sorry i made a mistake... i

in the line q=q/2 is wrong
correct as *q=*q/2;
and *w=*w/2;

since addresses cant be divided...

very sorry

Is This Answer Correct ?    9 Yes 6 No

Can u return two values using return keyword? If yes, how? If no, why?..

Answer / vaibhav

no.

Is This Answer Correct ?    2 Yes 2 No

Can u return two values using return keyword? If yes, how? If no, why?..

Answer / vikas shakya

Using the return statement u can only return one value at a
time.
So you can either return the value of a variable like you
can return an integer, or you can return pointer (which may
contain more than one values), which is pointing to
dynamically allocated location, Like in given below example:
//Returning two values from a function.

#include "stdio.h"
#include "malloc.h"

int *values()
{
int *ptr;
ptr = (int*)malloc(2);
*ptr = 10;
*(ptr+1) = 20;
return ptr;
}

int main()
{
int *ptr = values();
printf("%d\n%d",*ptr,*(ptr+1));
return 0;
}

Is This Answer Correct ?    2 Yes 3 No

Can u return two values using return keyword? If yes, how? If no, why?..

Answer / vignesh1988i

ya we can return two or more than two values..... it's
possible..
by using concept of POINTERS..... but no need of return
keyword at all.....

instead of call by value in the function use call by
reference concept....
take the following program:

int fun(int *,int *);
void main()
{
int j=800,k=1000;
fun(&j,&k);
printf("%d",j,k);
getch();
}
int fun(int *q,int *w)
{
q=q/2;
w=w/2;
}
the output of the followiung is : 400 & 500.
how it's possible, i ll explain,

since we are calling by reference we
are sending the address of the two variables. so in fun.
definition we are catching it by pointers..... so that
pointer variable is holding the address of the two variables
in main fun. which is passed through address.... so in the
function we are changing the values of j & k.... so this
will change the value directly in the address of those two
variables j & k....... so implicitely two values are
returned wit out return keyword....

Is This Answer Correct ?    7 Yes 9 No

Post New Answer

More C Interview Questions

who invented c

13 Answers   IBM,


How Many Header Files in c?

2 Answers   TCS,


What is int main () in c?

0 Answers  


Which is better malloc or calloc?

0 Answers  


How do you define a string?

0 Answers  


Write a C++ program to give the number of days in each month according to what the user entered. example: the user enters June the program must count number of days from January up to June

0 Answers  


Why c is procedure oriented?

0 Answers  


Explain what is the difference between #include and #include 'file' ?

0 Answers  


How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)

4 Answers  


Please write me a program to print the first 50 prime numbers (NOT between the range 1 -50)

5 Answers   IBM, KJH,


ratio,age,persentage

0 Answers  


we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?

4 Answers   HP, Wipro,


Categories