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 rule of three?


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

Post New Answer

More C++ General Interview Questions

write a C++ programming :if the no is between 32 to 50 it will be odd.

3 Answers   NIIT,


What is a forward referencing and when should it be used?

0 Answers  


What is the use of ::(scope resolution operator)?

0 Answers  


why is iostream::eof inside a loop condition considered wrong?

0 Answers  


What is oop in c++?

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  


Can you explain the term "resource acquisition is initialization?"

1 Answers   Amazon,


What is polymorphism in c++? Explain with an example?

0 Answers  


Should I learn c or c++ first?

0 Answers  


How can we check whether the contents of two structure variables are same or not?

0 Answers  


Which one is better- macro or function?

0 Answers   Fidelity,


Explain queue. How it can be implemented?

0 Answers  


Categories