What is meant by a delegate?
Which software is used for c++ programming?
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
How would you use the functions sin(), pow(), sqrt()?
What are the implicit member functions of class?
How is computer programming useful in real life?
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 What function initalizes variables in a class:
a) Destructor
b) Constitutor
c) Constructor What is the purpose of ios::basefield in the following statement? What are the three forms of cin.get() and what are their differences? How many characters are recognized by ANSI C++? What is purpose of new operator? What is a list c++? Explain the difference between struct and class in terms of access modifier. Can char be a number c++?