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

What is flush programming?

1015

What are the four main data types?

1085

What is difference between rand () and srand ()?

1088

What is atoi?

973

What is #include iomanip?

1010

Is atoi safe?

1053

Who created c++?

1065

Should a constructor be public or private?

1035

What is #include sstream?

1064

Which field is used in c++?

1109

What is size_type?

1055

Why c++ is not a pure oop language?

1051

What is low level language in simple words?

1032

Which is the best c++ compiler for beginners?

1099

What is difference between c++ 11 and c++ 14?

1101


Post New C++ General Questions

Un-Answered Questions { C++ General }

What is meant by a delegate?

1094


Which software is used for c++ programming?

1082


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create

2632


How would you use the functions sin(), pow(), sqrt()?

1188


What are the implicit member functions of class?

1090


How is computer programming useful in real life?

1065


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<<"["<

2423


What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor

1162


What is the purpose of ios::basefield in the following statement?

1262


What are the three forms of cin.get() and what are their differences?

1240


How many characters are recognized by ANSI C++?

1424


What is purpose of new operator?

1071


What is a list c++?

1110


Explain the difference between struct and class in terms of access modifier.

1182


Can char be a number c++?

1045