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 is the main purpose of overloading operators?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

When one must use recursion function? Mention what happens when recursion functions are declared inline?

0 Answers  


When can you tell that a memory leak will occur?

1 Answers  


Differentiate between late binding and early binding. What are the advantages of early binding?

0 Answers  


1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?

5 Answers  


What is c++ & why it is used?

0 Answers  


What are the five types of inheritance in C++?

1 Answers  


What is the iunknown interface?

0 Answers  


Does dev c++ support c++ 11?

0 Answers  


If there are two catch statements, one for base and one for derived, which should come first?

0 Answers  


What issue do auto_ptr objects address?

2 Answers  


What are the different types of variables in C++?

1 Answers  


Write about all the implicit member functions of a class?

0 Answers  


Categories