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 do you mean by “this” pointer?


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

Post New Answer

More C++ General Interview Questions

What is the difference between while and do while loop? Explain with examples.

0 Answers  


How are the features of c++ different from c?

0 Answers  


Explain the benefits of proper inheritance.

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  


Distinguish between a # include and #define.

0 Answers  


what are prototypes

4 Answers   Infosys, TCS,


what is the use of void main() in C++ language?

0 Answers  


give me an example for testing a program showing the test path .show how the test is important and complex.

0 Answers   TCS,


how many trys can we write in one class

3 Answers   Cap Gemini,


How c functions prevents rework and therefore saves the programers time as wel as length of the code ?

0 Answers  


write a programme to get a character and thier ASCII value

0 Answers  


Can union be self referenced?

0 Answers  


Categories