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

C++ General Interview Questions
Questions Answers Views Company eMail

Explain friend class?

1094

Explain stack unwinding.

1026

What is stack unwinding?

1073

How to implement is-a and has-a class relationships?

972

Explain the auto storage classes in c++.

1058

What are stacks?

1016

What are the implicit member functions of class?

1042

You run a shell on unix system. How would you tell which shell are you running?

1126

Does improper inheritance have a potential to wreck a project?

1095

Explain the differences between list x; & list x();.

968

Name the implicit member functions of a class.

1041

How come you find out if a linked-list is a cycle or not?

994

Explain how to initialize a const data member.

1079

Do we have to use initialization list in spite of the assignment in constructors?

946

Why use of template is better than a base class?

1117


Post New C++ General Questions

Un-Answered Questions { C++ General }

Is c++ the most powerful language?

1015


Explain what are single and multiple inheritances in c++?

984


What is an undefined reference/unresolved external symbol error and how do I fix it?

1092


Write about the access privileges in c++ and also mention about its default access level?

1016


what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?

2296


What is a rooted hierarchy?

1111


What are the two shift operators and what are their functions?

1044


What is pointer to array in c++?

1096


Is c better than c++?

1028


What is the difference between a template and a macro?

1008


When do we run a shell in the unix system?

1026


What is the difference between public, private, and protected access?

1023


What is the use of seekg in c++?

1001


What is std namespace in c++?

1125


how can i access a direct (absolute, not the offset) memory address? here is what i tried: wrote a program that ask's for an address from the user, creates a FAR pointer to that adress and shows it. then the user can increment/decrement the value in that address by pressing p(inc+) and m(dec-). NOW, i compiled that program and opened it twice (in 2 different windows) and gave twice the same address to it. now look what happen - if i change the value in one "window" of the program, it DOES NOT change in the other! even if they point to the same address in the memory! here is the code snippet: //------------------------------------------------------ #include //INCLUDE EVERY KNOWN HEADER FILE #include //FOR ANY CASE... #include #include #include main() { int far *ptr; //FAR POINTER!!! long address; char key=0; //A KEY FROM THE KEYBOARD int temp=0; clrscr(); cout<<"Enter Address:"; cin>>hex>>address; //GETS THE ADDRESS clrscr(); (long)ptr=address; temp=*ptr; //PUTS THE ADDRESS IN THE PTR cout<<"["<

2377