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

#include <iostream>
using namespace std;
struct wow {
int x;
};
int main() {
wow a;
wow *b;
a.x = 22;
b = &a;
a.x = 23;
cout << b->x;
return 0;
}

Answer Posted / tiger

23

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are oops methods?

1073


What does sksksk mean in text slang?

2180


What is byval and byref? What are differences between them?

2269


What is polymorphism what are the different types of polymorphism?

1065


What are the advantages of polymorphism?

1082


2. Give the different notations for the class.\

2223


Why is polymorphism needed?

1126


What is interface? When and where is it used?

2208


what is the drawback of classical methods in oops?

3428


Are polymorphisms mutations?

1213


What is class encapsulation?

1144


What is polymorphism and why is it important?

1098


What is debug class?what is trace class? What differences are between them? With examples.

2259


which feature are not hold visual basic of oop?

2233


to find out the minimum of two integer number of two different classes using friend function

2184