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?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain do array subscripts always start with zero?

1287


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1775


What are the 5 types of inheritance in c ++?

1073


What is data type long in c?

1116


Explain what is a pragma?

1091


Why do we use int main instead of void main in c?

1204


Explain what math functions are available for integers? For floating point?

1161


Which is more efficient, a switch statement or an if else chain?

1081


pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)

2697


What is the c value paradox and how is it explained?

1107


Explain what are header files and explain what are its uses in c programming?

1204


What is keyword in c?

1063


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

1095


how we can make 3d venturing graphics on outer interface

4904


Can stdout be forced to print somewhere other than the screen?

1091