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...

how is returning structurs from functions?Show an eg?

Answer Posted / ravi.g

struct student
{
int age;
float percntg;
};

struct student s1;

int a=25;
float p=88.99;
student assign(a,p)
{
student s2;
s2.age=a;
s2.percntg=p;
return s2;

}

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Should the this pointer can be used in the constructor?

1076


Which is the best c++ software?

1151


Which format specifier is used for printing a pointer value?

1108


Is swift better than c++?

997


What is the best way to declare and define global variables?

1418


an integer constant must have atleast one a) character b) digit c) decimal point

1084


Is c++ used anymore?

1139


Tell me what are static member functions?

1137


Does c++ vector allocate memory?

1063


Can a program run without main?

1333


Describe linked list using C++ with an example.

1127


What is the use of setfill in c++?

1125


What is the default width for ouputting a long integer using the insertion operator?

1300


What is function overloading c++?

1135


Define whitespace in C++.

1275