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


What and all can a compiler provides by default?

Answers were Sorted based on User's Feedback



What and all can a compiler provides by default?..

Answer / shakti singh khinchi

5 things:

1: default constructor.
2: default destructor.
3: default copy constructor.
4: assignment operator (=).
5: address operator ('&').

Is This Answer Correct ?    14 Yes 0 No

What and all can a compiler provides by default?..

Answer / dee

default constructor, destructor, default copy constructor,
assignment operator.

Is This Answer Correct ?    13 Yes 0 No

What and all can a compiler provides by default?..

Answer / sandy

Also operator "&"

class Test {};

int main()
{
Test t;
Test *ptr = &t;
return 0;
}

Is This Answer Correct ?    4 Yes 5 No

Post New Answer

More C++ General Interview Questions

Explain function overloading and operator overloading.

0 Answers  


What is a conversion constructor?

1 Answers  


What are compilers in c++?

0 Answers  


Why do you use the namespace feature?

0 Answers  


What are the two types of comments?

0 Answers  


write a program that takes two numbers from user that prints the smallest number

2 Answers  


What you mean by early binding and late binding? How it is related to dynamic binding?

1 Answers  


Describe the syntax of single inheritance in C++?

0 Answers   Fidelity,


What does #define mean in c++?

0 Answers  


Evaluate !(1&&1||1&&0) a) Error b) False c) True

0 Answers  


Is c++ primer good for beginners?

0 Answers  


What is pair in c++?

0 Answers  


Categories